diff --git a/pages/linux/flatpak-mask.md b/pages/linux/flatpak-mask.md new file mode 100644 index 0000000000..e0c7a3fea7 --- /dev/null +++ b/pages/linux/flatpak-mask.md @@ -0,0 +1,16 @@ +# flatpak mask + +> Mask out updates and automatic installation. +> More information: . + +- Ignore updates for a specific flatpak: + +`flatpak mask {{com.example.app}}` + +- Undo ignore updates: + +`flatpak mask --remove {{com.example.app}}` + +- List all currently masked patterns: + +`flatpak mask {{--system|--user}}` diff --git a/pages/linux/flatpak-remote-info.md b/pages/linux/flatpak-remote-info.md new file mode 100644 index 0000000000..67894b8661 --- /dev/null +++ b/pages/linux/flatpak-remote-info.md @@ -0,0 +1,16 @@ +# flatpak remote-info + +> Show information about an application or runtime in a remote. +> More information: . + +- Show information about a flatpak: + +`flatpak remote-info {{remote_name}} {{com.example.app}}` + +- Show a log of previous versions in a remote: + +`flatpak remote-info --log {{remote_name}} {{com.example.app}}` + +- Show information about the specific commit, rather than the latest version: + +`flatpak remote-info --commit={{COMMIT}} {{remote_name}} {{com.example.app}}` diff --git a/pages/linux/flatpak-update.md b/pages/linux/flatpak-update.md new file mode 100644 index 0000000000..6b7dadcc89 --- /dev/null +++ b/pages/linux/flatpak-update.md @@ -0,0 +1,16 @@ +# flatpak update + +> Update flatpak applications and runtimes. +> More information: . + +- Update all installed applications and runtimes (use `-y` to confirm all prompts automatically): + +`flatpak update` + +- Update only a specific app: + +`flatpak update {{com.example.app}}` + +- Update/Downgrade to a specific commit (also see flatpak remote-info and flatpak mask): + +`flatpak update --commit={{COMMIT}} {{com.example.app}}`