12 lines
313 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
2020-03-16 16:04:42 +01:00
WHAT="$(printf "Shutdown\nSuspend\nLock\nReboot" | dmenu -i -p 'What do you want?' -h 24)"
if [ -z "$WHAT" ]; then exit; fi
case "$WHAT" in
Shutdown) systemctl poweroff;;
Suspend) sh ~/.scripts/lockscreen; systemctl suspend;;
2020-03-16 16:04:42 +01:00
Lock) sh ~/.scripts/lockscreen;;
Reboot) systemctl reboot
esac