2018-09-09 15:07:43 +01:00
|
|
|
# flatpak
|
|
|
|
|
|
|
|
> Build, install and run flatpak applications and runtimes.
|
2021-07-09 15:45:55 +01:00
|
|
|
> More information: <https://docs.flatpak.org/en/latest/flatpak-command-reference.html#flatpak>.
|
2018-09-09 15:07:43 +01:00
|
|
|
|
|
|
|
- Run an installed application:
|
|
|
|
|
|
|
|
`flatpak run {{name}}`
|
|
|
|
|
|
|
|
- Install an application from a remote source:
|
|
|
|
|
|
|
|
`flatpak install {{remote}} {{name}}`
|
|
|
|
|
2024-01-31 11:21:00 +00:00
|
|
|
- List installed applications, ignoring runtimes:
|
2018-09-09 15:07:43 +01:00
|
|
|
|
2024-01-31 11:21:00 +00:00
|
|
|
`flatpak list --app`
|
2018-09-09 15:07:43 +01:00
|
|
|
|
|
|
|
- Update all installed applications and runtimes:
|
|
|
|
|
|
|
|
`flatpak update`
|
|
|
|
|
|
|
|
- Add a remote source:
|
|
|
|
|
2018-10-29 11:14:25 +00:00
|
|
|
`flatpak remote-add --if-not-exists {{remote_name}} {{remote_url}}`
|
2018-09-09 15:07:43 +01:00
|
|
|
|
2021-03-27 14:36:20 +00:00
|
|
|
- Remove an installed application:
|
|
|
|
|
|
|
|
`flatpak remove {{name}}`
|
|
|
|
|
2022-10-06 05:30:25 +01:00
|
|
|
- Remove all unused applications:
|
|
|
|
|
|
|
|
`flatpak remove --unused`
|
|
|
|
|
2021-03-27 14:36:20 +00:00
|
|
|
- Show information about an installed application:
|
|
|
|
|
|
|
|
`flatpak info {{name}}`
|