Skip to content

Flatpak Snippets

Source: TDLR pages for Flatpak

Terminal window
# Run an installed application
flatpak run com.example.app
# Run an install application with a selection
flatpak run (flatpak list --columns=application --app | fzf)
# --columns - only shown application column
# --app - only show applications (not runtimes)
# Install an application from a remote source
flatpak install remote_name com.example.app
# List installed applications, ignoring runtimes
flatpak list --app
# Update all installed applications and runtimes
flatpak update -y
# Add a remote source
flatpak remote-add --if-not-exists remote_name remote_url
# Remove an installed application
flatpak remove com.example.app
# Remove all unused applications and agree to prompts with -y
flatpak remove --unused -y
# Show information about an installed application
flatpak info com.example.app