dotfiles/.config/rofi/scripts/powermenu.sh

34 lines
637 B
Bash
Raw Normal View History

2019-09-22 13:52:58 +03:00
OPTIONS="Reboot\nPoweroff\nSuspend\nHibernate\nLogout\nLock\n"
if [ "$@" ]
then
case $@ in
Exit)
i3-msg exit
;;
Logout)
i3-msg exit
;;
2019-09-22 13:52:58 +03:00
Reboot)
systemctl reboot
;;
Poweroff)
systemctl poweroff
;;
Suspend)
systemctl suspend
2019-09-22 13:52:58 +03:00
;;
Hibernate)
systemctl hibernate
2019-09-22 13:52:58 +03:00
;;
Lock)
2021-04-27 23:25:21 +03:00
#i3lock -k -i /usr/share/backgrounds/archlinux/wave.png --timecolor FFFFFF --datecolor FFFFFF --ignore-empty-password --show-failed-attempts -C
"i3lock"
;;
2019-09-22 13:52:58 +03:00
*)
;;
esac
else
echo -en $OPTIONS
fi