1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 21:17:57 +01:00
tldr/pages/linux/flatpak.md
o0nd7ots 5894cbbd19
flatpak: changed one example to use --app (#12120)
Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com>
2024-01-31 12:21:00 +01:00

749 B

flatpak

Build, install and run flatpak applications and runtimes. More information: https://docs.flatpak.org/en/latest/flatpak-command-reference.html#flatpak.

  • Run an installed application:

flatpak run {{name}}

  • Install an application from a remote source:

flatpak install {{remote}} {{name}}

  • List installed applications, ignoring runtimes:

flatpak list --app

  • Update all installed applications and runtimes:

flatpak update

  • Add a remote source:

flatpak remote-add --if-not-exists {{remote_name}} {{remote_url}}

  • Remove an installed application:

flatpak remove {{name}}

  • Remove all unused applications:

flatpak remove --unused

  • Show information about an installed application:

flatpak info {{name}}