I am currently using Linux Mint (after a long stint of using MX Linux) after learning it handles Nvidia graphics cards flawlessly, which I am grateful for. Whatever grief I have given Ubuntu in the past, I take it back because when they make something work, it is solid.

Anyways, like most distros these days, Flatpaks show up alongside native packages in the package manager / app store. I used to have a bias towards getting the natively packed version, but these days, I am choosing Flatpaks, precisely because I know they will be the latest version.

This includes Blender, Cura, Prusaslicer, and just now QBittorrent. I know this is probably dumb, but I choose the version based on which has the nicer icon.

  • BaconIsAVeg@lemmy.ml
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    This. Having to open a console to run a flatpak in bspwm is annoying as all hell. PWA’s are just as bad, I ended up writing a script I could run from dmenu:

    #!/usr/bin/env bash
    
    PWA_PATH=${HOME}/.local/share/applications
    
    for app in $@
    do
      DESKTOP=$(grep -i "Name=.*${app}" -lm 1 ${PWA_PATH}/*.desktop)
      if [ ! -z ${DESKTOP} ]
      then
        APPID=$(basename ${DESKTOP} | cut -d- -f2)
        /usr/bin/google-chrome --profile-directory=Default --app-id=${APPID} &
      fi
    done