dotfiles/.config/river/exit.sh

12 lines
244 B
Bash
Raw Normal View History

2021-09-22 16:44:31 +02:00
#!/bin/sh
ANSWER=$(echo -e "suspend\nlock\nlogout\nshutdown\nreboot" | rofi -dmenu)
case $ANSWER in
"suspend") systemctl suspend;;
"lock") xset s activate;;
"logout") riverctl exit;;
"shutdown") shutdown now;;
"reboot") reboot;;
esac