aboutsummaryrefslogtreecommitdiff
path: root/dmenu-system
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu-system')
-rwxr-xr-xdmenu-system10
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