aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2024-11-03 14:25:50 -0500
committerBardofSprites <[email protected]>2024-11-03 14:25:50 -0500
commit4d1db156d651a21e3167a58e3abc0009e6a721d0 (patch)
treea47530f4e7612704f5736cdd6012a06b9da7c834
parent387795a86c5a202c4de10624b7262617b752570c (diff)
qutebrowser, obs, texmacs
-rwxr-xr-xbin/.local/bin/scripts/launch-flatpak10
1 files changed, 9 insertions, 1 deletions
diff --git a/bin/.local/bin/scripts/launch-flatpak b/bin/.local/bin/scripts/launch-flatpak
index 16b4365..688a568 100755
--- a/bin/.local/bin/scripts/launch-flatpak
+++ b/bin/.local/bin/scripts/launch-flatpak
@@ -1,6 +1,6 @@
#!/bin/bash
-flatpaks="Anki\nCalibre\nLibreOffice\nZealDocs"
+flatpaks="Anki\nCalibre\nobs\nLibreOffice\nZealDocs\nQutebrowser\ntexmacs"
chosen=$(echo -e "$flatpaks" | dmenu -p "Select flatpak: ")
case "$chosen" in
@@ -15,7 +15,15 @@ case "$chosen" in
;;
"ZealDocs")
flatpak run org.zealdocs.Zeal
+ ;;
+ "Qutebrowser")
+ flatpak run org.qutebrowser.qutebrowser
;;
+ "obs")
+ flatpak run com.obsproject.Studio
+ ;;
+ "texmacs")
+ flatpak run org.texmacs.TeXmacs
*)
echo "flatpak not installed"
exit 1