blob: e5c5ad2b04bc90251311690041a01920063eb08e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
chosen=$(printf " Power Off\n Restart\n Suspend\n Hibernate\n Log Out\n Lock" | rofi -dmenu -i -p "Choice:")
case "$chosen" in
" Power Off") poweroff ;;
" Restart") reboot ;;
" Suspend") systemctl suspend-then-hibernate ;;
" Hibernate") systemctl hibernate ;;
" Log Out") killall dwm ;;
" Lock") betterlockscreen -l ;;
*) exit 1 ;;
esac
|