diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-06-09 18:07:30 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-06-09 18:07:30 +0200 |
commit | eae78d6aca1028a614583a538f73eb6164fbfc9e (patch) | |
tree | 6e3a5b5123d0270d2189ce600aec40c45287ab20 /dmenu-system | |
parent | c47c8720b345ecbfd35db66c84437a51a0902245 (diff) | |
download | scripts-eae78d6aca1028a614583a538f73eb6164fbfc9e.tar.gz scripts-eae78d6aca1028a614583a538f73eb6164fbfc9e.tar.bz2 scripts-eae78d6aca1028a614583a538f73eb6164fbfc9e.zip |
update
Diffstat (limited to 'dmenu-system')
-rwxr-xr-x | dmenu-system | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dmenu-system b/dmenu-system new file mode 100755 index 0000000..f1b71ac --- /dev/null +++ b/dmenu-system @@ -0,0 +1,10 @@ +#!/bin/sh + +choice=$(echo -e " Theme\n Bluetooth\n Network\n✘ Exit" | dmenu -bw 4 -c -l 6 -p "System: ") +case "$choice" in + " Theme") choose-theme;; + " Bluetooth") bluetui;; + " Network") st -e nmtui;; + " Exit") exit 0 ;; + *) exit 1;; +esac |