aboutsummaryrefslogtreecommitdiff
path: root/dmenu-system
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu-system')
-rwxr-xr-xdmenu-system11
1 files changed, 6 insertions, 5 deletions
diff --git a/dmenu-system b/dmenu-system
index f1b71ac..1ed4edb 100755
--- a/dmenu-system
+++ b/dmenu-system
@@ -1,10 +1,11 @@
#!/bin/sh
-choice=$(echo -e " Theme\n Bluetooth\n Network\n✘ Exit" | dmenu -bw 4 -c -l 6 -p "System: ")
+choice=$(echo -e " Settings\n Bluetooth\n Network\n󰖩 Wifi\n✘ Exit" | dmenu -bw 4 -c -z 500 -l 6 -p "System: ")
case "$choice" in
- " Theme") choose-theme;;
- " Bluetooth") bluetui;;
- " Network") st -e nmtui;;
- " Exit") exit 0 ;;
+ " Settings") dmenu-settings;;
+ " Bluetooth") dmenu-bluetooth;;
+ " Network") st -e nmtui;;
+ "󰖩 Wifi") st -e wavemon;;
+ " Exit") exit 0 ;;
*) exit 1;;
esac