.dotfiles/.local/bin/rofi-shutdown

18 lines
276 B
Text
Raw Normal View History

2020-09-23 09:25:17 +00:00
#!/bin/bash
action=$(echo -e "Shutdown\nReboot\nLogout" | rofi -dmenu)
case "$action" in
"Shutdown")
systemctl poweroff -i
;;
"Reboot")
systemctl reboot
;;
"Logout")
2021-03-30 20:59:59 +00:00
systemctl --user exit
2020-09-23 09:25:17 +00:00
;;
*)
;;
esac