diff options
| author | BardofSprites <[email protected]> | 2025-07-17 10:18:32 -0400 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2025-07-17 10:18:32 -0400 |
| commit | 3ce4e02a32b5e1ca26716b7d6dd9801668b35cf6 (patch) | |
| tree | 773dfe160a787eed7202cb0c4f6130e933af2d94 | |
| parent | 9254765c3ad2529942885112536b69e48987816f (diff) | |
more flatpaks
| -rwxr-xr-x | bin/.local/bin/scripts/launch-flatpak | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/bin/.local/bin/scripts/launch-flatpak b/bin/.local/bin/scripts/launch-flatpak index 2bf69d7..f6bb79d 100755 --- a/bin/.local/bin/scripts/launch-flatpak +++ b/bin/.local/bin/scripts/launch-flatpak @@ -1,6 +1,6 @@ #!/bin/bash -flatpaks="Anki\nCalibre\nobs\nLibreOffice\nZealDocs\nQutebrowser\ntexmacs\nkdenlive" +flatpaks="Anki\nCalibre\nDiscord\nobs\nLibreOffice\nZealDocs\nQutebrowser\nsteam\ntexmacs\nkdenlive\nfreetube\nGajim" chosen=$(echo -e "$flatpaks" | dmenu -p "Select flatpak: ") case "$chosen" in @@ -10,6 +10,9 @@ case "$chosen" in "Calibre") flatpak run com.calibre_ebook.calibre ;; + "Discord") + flatpak run com.discordapp.Discord + ;; "LibreOffice") flatpak run org.libreoffice.LibreOffice ;; @@ -24,10 +27,19 @@ case "$chosen" in ;; "texmacs") flatpak run org.texmacs.TeXmacs - ;; + ;; + "steam") + flatpak run com.valvesoftware.Steam + ;; "kdenlive") flatpak run org.kde.kdenlive - ;; + ;; + "freetube") + flatpak run io.freetubeapp.FreeTube + ;; + "Gajim") + flatpak run org.gajim.Gajim + ;; *) echo "operation wasn't successful" exit 1 |
