Flatpak Snippets
Source: TDLR pages for Flatpak
# Run an installed applicationflatpak run com.example.app# Run an install application with a selectionflatpak run (flatpak list --columns=application --app | fzf)# --columns - only shown application column# --app - only show applications (not runtimes)
# Install an application from a remote sourceflatpak install remote_name com.example.app
# List installed applications, ignoring runtimesflatpak list --app
# Update all installed applications and runtimesflatpak update -y
# Add a remote sourceflatpak remote-add --if-not-exists remote_name remote_url
# Remove an installed applicationflatpak remove com.example.app
# Remove all unused applications and agree to prompts with -yflatpak remove --unused -y
# Show information about an installed applicationflatpak info com.example.app