diff options
| author | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-11 10:13:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-11 10:13:32 -0500 |
| commit | e58f13a6d7db7d046933d72ccafebbb0fb58202d (patch) | |
| tree | 7a9c34c03c87e684079c8bd196bdf19cadebcbf3 /tools/universal_launcher.sh | |
| parent | 0408cb4803e0b2c82affb16e2eac8dfd73895343 (diff) | |
| parent | b9b34f91138c7b1cc2bc54571d1522c85cb581cd (diff) | |
Merge pull request #25 from ihateamongus/codex/create-universal-launcher-with-dmenu
feat: add universal dmenu launcher
Diffstat (limited to 'tools/universal_launcher.sh')
| -rwxr-xr-x | tools/universal_launcher.sh | 17 |
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 |
