Files
oam/knowledge base/flatpak.md
2023-07-09 18:17:32 +02:00

1.6 KiB

Flatpak

TL;DR

# List installed applications and runtimes.
flatpak list
flatpak list --app

# List remotes.
flatpak remotes

# Add remotes.
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

# Search for applications.
flatpak search vscode

# Install applications.
flatpak install fedora org.stellarium.Stellarium
flatpak install --user flathub com.visualstudio.code-oss
flatpak install https://flathub.org/repo/appstream/org.gimp.GIMP.flatpakref

# Run applications.
flatpak run org.gimp.GIMP

# Update applications.
flatpak update

# Uninstall applications.
flatpak uninstall org.stellarium.Stellarium
flatpak uninstall --unused
flatpak uninstall --delete-data edu.berkeley.BOINC

# Remove remotes.
flatpak remote-delete flathub

# Fix inconsitencies.
flatpak repair

# Reset applications' permissions.
flatpak permission-reset org.gimp.GIMP

# List operations.
flatpak history

Further readings

Sources

All the references in the further readings section, plus the following: