scripts/rofi/rofi-power-menu.sh

47 lines
1.7 KiB
Bash
Raw Normal View History

2020-09-11 15:00:39 +00:00
#!/bin/bash
# Passwordless sudo required for systemctl [reboot|poweroff|hibernate]
# Determine if Sway or i3
if [ -z ${SWAYSOCK+x} ]; then
2020-11-23 09:35:26 +00:00
WM="i3"
2020-09-11 15:00:39 +00:00
else
2020-11-23 09:35:26 +00:00
WM="sway"
2020-09-11 15:00:39 +00:00
fi
if [[ $WM == 'i3' ]]; then
2020-11-23 09:35:26 +00:00
res=$(printf "🔒 Lock|↩ Logout|↻ Reload i3|↹ Restart i3|↯ Hibernate|🡙 Reboot|⏻ Shutdown" | rofi -sep "|" -dmenu -i -p 'Power: ' "" -columns 1 -rows 7 -width 32 -l 1 -hide-scrollbar -eh 1 -location 0 -padding 12 -opacity 100 -auto-select -no-fullscreen)
2020-09-11 15:00:39 +00:00
else
res=$(echo "🔒 Lock|🖵 Toggle Displays|⚿ Yubico Authenticator|↻ Reload Sway|↻ Reload Waybar|↩ Logout|↯ Hibernate|🡙 Reboot|⏻ Shutdown" | rofi -sep "|" -dmenu -i -p 'Power: ' "" -no-lazy-grab -auto-select -no-fullscreen)
2020-09-11 15:00:39 +00:00
fi
if [ "$res" == "🔒 Lock" ]; then
${WM}lock -c 1D2021
2020-09-11 15:00:39 +00:00
elif [ "$res" == "↩ Logout" ]; then
2020-11-23 09:35:26 +00:00
# Prevent auto-login
rm /home/jpm/.config/last_login_gui
${WM} exit
elif [ "$res" == "🖵 Toggle Displays" ]; then
/home/jpm/scripts/sway/toggle_outputs.sh
elif [ "$res" == "⚿ Yubico Authenticator" ]; then
/home/jpm/scripts/rofi/rofi-yubioath.sh
2020-09-11 15:00:39 +00:00
elif [ "$res" == "↻ Reload i3" ]; then
2020-11-23 09:35:26 +00:00
i3 reload
2020-09-11 15:00:39 +00:00
elif [ "$res" == "↹ Restart i3" ]; then
2020-11-23 09:35:26 +00:00
i3 restart
2020-09-11 15:00:39 +00:00
elif [ "$res" == "↻ Reload Sway" ]; then
2020-11-23 09:35:26 +00:00
sway reload
2020-09-11 15:00:39 +00:00
elif [ "$res" == "↻ Reload Waybar" ]; then
2020-11-23 09:35:26 +00:00
# Need to integrate with sway/displays.pl for alternative outputs
/home/jpm/scripts/sway/displays.pl -w
2020-09-11 15:00:39 +00:00
elif [ "$res" == "🡙 Reboot" ]; then
2020-11-23 09:35:26 +00:00
rm $SSH_AUTH_SOCK
sudo systemctl reboot -i
2020-09-11 15:00:39 +00:00
elif [ "$res" == "⏻ Shutdown" ]; then
2020-11-23 09:35:26 +00:00
rm $SSH_AUTH_SOCK
sudo systemctl poweroff -i
2020-09-11 15:00:39 +00:00
elif [ "$res" == "↯ Hibernate" ]; then
2020-11-23 09:35:26 +00:00
sudo systemctl hibernate -i
2020-09-11 15:00:39 +00:00
fi
exit 0