blob: f1b71ac906235ea9aac887b02831631bdbee754f (
plain)
1
2
3
4
5
6
7
8
9
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
|