summaryrefslogtreecommitdiff
path: root/tools/universal_launcher.sh
diff options
context:
space:
mode:
authorauric <104602845+ihateamongus@users.noreply.github.com>2025-09-11 10:30:04 -0500
committerauric <104602845+ihateamongus@users.noreply.github.com>2025-09-11 10:30:04 -0500
commit2a43f42921639a09bc191679f1f600fc645ea25f (patch)
tree65c378c58eb1efe6c8bacc0f50ce987e6ae7995e /tools/universal_launcher.sh
parent0408cb4803e0b2c82affb16e2eac8dfd73895343 (diff)
feat: add fuzzy vertical dmenu
Diffstat (limited to 'tools/universal_launcher.sh')
-rwxr-xr-xtools/universal_launcher.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/universal_launcher.sh b/tools/universal_launcher.sh
new file mode 100755
index 0000000..2cedc59
--- /dev/null
+++ b/tools/universal_launcher.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+# universal dmenu launcher
+choice=$(printf '%s\n' Run Steam Power | dmenu -i -l 10)
+case "$choice" in
+ Run)
+ dmenu_run &
+ ;;
+ Steam)
+ "$(dirname "$0")/steam-dmenu.sh"
+ ;;
+ Power)
+ "$(dirname "$0")/power-menu.sh"
+ ;;
+ *)
+ exit 0
+ ;;
+ esac