blob: 1ed4edb8b6b1fa44eb7e155f1060926025a802c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
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
" Settings") dmenu-settings;;
" Bluetooth") dmenu-bluetooth;;
" Network") st -e nmtui;;
" Wifi") st -e wavemon;;
" Exit") exit 0 ;;
*) exit 1;;
esac
|