What the hell is FUSE, and why is it giving me so many issues?

About the fuse error, doing sudo dnf install fuse in the template should fix it.

AppImage can’t appear in the qube menu since they are not installed and they don’t provide a .desktop file. To be able to create one, you need to do the following in the qube where the appimage is:

  • mkdir ~/.local/share/applications
  • nano ~/.local/share/applications/[APPNAME].desktop
  • Paste the following inside and edit the needed values:
    [Desktop Entry]
    Encoding=UTF-8
    Version=1.0
    Type=Application
    Name=[APPNAME]
    Comment=[COMMENT]
    Terminal=false
    Exec=/path/to/the/app/[APPNAME].AppImage
    Icon=/path/to/the/app/icon
    
  • Open qube settings and refresh applications list, it should be listed.
1 Like