• 136 Posts
  • 112 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle

    1. Flatpak, create a shell script to call the flatpak command and pass arguments
    2. If the app doesn’t work well as a flatpak or isn’t packaged, I would use distrobox
    3. If the app doesn’t work well in distrobox, I’d rpm-ostree install it
    4. If I’m feeling fancy, I might look into installing homebrew. But you need to do some workarounds with PATH and homebrew otherwise it can break things; Universal Blue includes these workarounds out of the box
































  • After this and the few hiccups I’ve had with Bitwarden on Linux (official snap in part still relies on Ubuntu 18.04 libraries and still defaults to X11, not great for security focused app), I’ve decided to give Proton a shot. Went for 2 year unlimited plan, so I hope they don’t do anything stupid in that time.

    That being said, I’m not hating on Bitwarden. Based on what one of the developers said, this seems to be an oversight from their side that they should hopefully address. This is just my excuse to try out the Proton suite based on their strong focus on privacy and security, albeit with a hefty cost (and somewhat scummy strategy of listing prices as monthly but are actually paid annually, and choosing the actually monthly options are much more expensive).







  • Yes, it’s something you write yourself. Bash is the language you use when you use the terminal. A bash script is just many lines of bash commands.

    A bash script could be as simple as

    dnf install package1 package2 package3
    dnf remove package4 package5 package6
    

    This script automates installing some packages and removing some packages. The bash script I use does a lot more, such as running commands to configure Gnome how I like it.

    If you’re not comfortable with the terminal, I would definitely recommend staying away from NixOS. To declaratively/reproducibly set up the system, it uses a language called Nix that is a fair bit more complicated than bash. It’s also just very different from traditional Linux systems like Fedora or Ubuntu.