• 0 Posts
  • 3 Comments
Joined 1 year ago
cake
Cake day: August 2nd, 2023

help-circle
  • kenopsik@lemm.eetoMemes@lemmy.mlBut I can't sleep
    link
    fedilink
    arrow-up
    2
    ·
    8 months ago

    In this economy??

    Fabricated poverty and homelessness, medical and educational debts, corporate greed and consumerism, accumulating environmental issues that nobody with the ability to make change is willing to pursue, non-stop wars, political turmoil…

    I don’t know. I think the dead have it better.



  • Flatpaks can also be used to run CLI programs, but it requires using flatpak run instead of using the apps standard CLI command. But you can create an alias and should work mostly the same way.

    For example, I have neovim on my Debian laptop via flatpak. So in order to run it, you have to do

    flatpak run io.neovim.nvim
    

    You can create an alias for that command

    alias nvim='flatpak run io.neovim.nvim'
    

    And then you can use the nvim command as normal