Skip to content

Instantly share code, notes, and snippets.

@zvakanaka
Created November 29, 2025 19:07
Show Gist options
  • Select an option

  • Save zvakanaka/70e9a7b565599e388d26007e145db254 to your computer and use it in GitHub Desktop.

Select an option

Save zvakanaka/70e9a7b565599e388d26007e145db254 to your computer and use it in GitHub Desktop.
How I manage AppImages on Linux
# Add this to path (.desktop will be in path so this only needs to be part of $PATH if you want to run from command line)
mkdir -p ~/Applications
# Put the AppImage in the right spot
mv ~/Downloads/*AppImage ~/Applications
# Find program files, which may include an existing icon if lucky
find / -type f -iname "*orca*slicer*" 2>/dev/null
# Create the .desktop file, see https://wiki.archlinux.org/title/Desktop_entries
nano ~/.local/share/applications/my-program.desktop
update-desktop-database
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment