summaryrefslogtreecommitdiff
path: root/keyboard/shutdownprompt
blob: b56268dd1e2e26ff61229a019ae8b9f2408cf5c9 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
dmenucolors='-nb #AA0000 -nf #FFF -sb #FF0000 -sf #FFF'
[ -n "$1" ] && option="$1" || option=$(echo "Cancel\nSuspend\nShutdown\nRestart" | dmenu -p "Power Menu " $dmenucolors || exit)
case $option in
	Suspend)  launch zzz 	;;
	Shutdown) launch off	;;
	Restart)  launch res	;;
esac