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