Added Divers

This commit is contained in:
2025-04-24 16:06:40 +02:00
parent 2abf8e30cf
commit b867b58f01
20 changed files with 1357 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
# Flatpak downgrade
##### View installed flatpaks
```
flatpak list --app
```
##### View runtimes only
```
flatpak list --runtime
```
##### Show infos for app to downgrade
```
flatpak remote-info --log flathub <Application ID>
```
&gt; **Application ID example :** com.github.zocker\_160.SyncThingy
```
sudo flatpak update --commit=<commit_code> <Application ID>
```
##### Mask app (disallow update)
```
sudo flatpak mask <Application ID>
```
##### Remove mask (allow update)
```
sudo flatpak --remove mask <Application ID>
```