Flatpak Snippets
Source: TDLR pages for Flatpak
# Run an installed applicationflatpak run com.example.app
# 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
# 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