aboutsummaryrefslogtreecommitdiff
path: root/dmenu-system
diff options
context:
space:
mode:
authorPhilip Wittamore <philip@wittamore.com>2025-06-16 18:33:27 +0200
committerPhilip Wittamore <philip@wittamore.com>2025-06-16 18:33:27 +0200
commitce2d80f5c5104c31950a30eac0a6a86ba71c3163 (patch)
tree48417c3b848ae7f3808fbb1d43bb521a8115960f /dmenu-system
parent00e2a2f919bb26ca1493ca2842dd7af1791ae587 (diff)
downloadscripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.tar.gz
scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.tar.bz2
scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.zip
update
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