rice/polybar-themes/sblocks/scripts/powermenu.sh

92 lines
2.5 KiB
Bash
Raw Normal View History

2021-11-14 22:51:43 -08:00
#!/usr/bin/env bash
## Author : Aditya Shakya
## Mail : adi1090x@gmail.com
## Github : @adi1090x
## Twitter : @adi1090x
2021-11-15 15:29:58 -08:00
dir="$HOME/SudacodeRice/polybar-themes/sblocks/scripts/rofi"
2021-11-14 22:51:43 -08:00
uptime=$(uptime -p | sed -e 's/up //g')
rofi_command="rofi -theme $dir/powermenu.rasi"
# Options
shutdown=" Shutdown"
reboot=" Restart"
lock=" Lock"
suspend=" Sleep"
logout=" Logout"
# Confirmation
confirm_exit() {
2021-11-15 15:29:58 -08:00
rofi -dmenu -i -no-fixed-num-lines -p "Are You Sure? : " \
-theme $dir/confirm.rasi
2021-11-14 22:51:43 -08:00
}
# Message
msg() {
2021-11-15 15:29:58 -08:00
rofi -theme "$dir/message.rasi" -e "Available Options - yes / y / no / n"
2021-11-14 22:51:43 -08:00
}
# Variable passed to rofi
options="$lock\n$suspend\n$logout\n$reboot\n$shutdown"
chosen="$(echo -e "$options" | $rofi_command -p "Uptime: $uptime" -dmenu -selected-row 0)"
case $chosen in
$shutdown)
2021-11-15 15:29:58 -08:00
ans=$(confirm_exit &)
if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then
systemctl poweroff
elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then
exit 0
2021-11-14 22:51:43 -08:00
else
2021-11-15 15:29:58 -08:00
msg
2021-11-14 22:51:43 -08:00
fi
;;
$reboot)
2021-11-15 15:29:58 -08:00
ans=$(confirm_exit &)
if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then
systemctl reboot
elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then
exit 0
2021-11-14 22:51:43 -08:00
else
2021-11-15 15:29:58 -08:00
msg
2021-11-14 22:51:43 -08:00
fi
;;
$lock)
2021-11-15 15:29:58 -08:00
if [[ -f /usr/bin/i3lock ]]; then
i3lock
elif [[ -f /usr/bin/betterlockscreen ]]; then
betterlockscreen -l
fi
2021-11-14 22:51:43 -08:00
;;
$suspend)
2021-11-15 15:29:58 -08:00
ans=$(confirm_exit &)
if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then
mpc -q pause
amixer set Master mute
systemctl suspend
elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then
exit 0
2021-11-14 22:51:43 -08:00
else
2021-11-15 15:29:58 -08:00
msg
2021-11-14 22:51:43 -08:00
fi
;;
$logout)
2021-11-15 15:29:58 -08:00
ans=$(confirm_exit &)
if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then
if [[ "$DESKTOP_SESSION" == "Openbox" ]]; then
openbox --exit
elif [[ "$DESKTOP_SESSION" == "bspwm" ]]; then
bspc quit
elif [[ "$DESKTOP_SESSION" == "i3" ]]; then
i3-msg exit
fi
elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then
exit 0
2021-11-14 22:51:43 -08:00
else
2021-11-15 15:29:58 -08:00
msg
2021-11-14 22:51:43 -08:00
fi
;;
esac