12 lines
290 B
Bash
Executable File

#!/usr/bin/env sh
WHAT="$(printf "Shutdown\nSuspend\nLock\nReboot" | rofi -dmenu -i -p 'What do you want?' -l 4)"
if [ -z "$WHAT" ]; then exit; fi
case "$WHAT" in
Shutdown) systemctl poweroff;;
Suspend) lockscreen; systemctl suspend;;
Lock) lockscreen;;
Reboot) systemctl reboot
esac