102 lines
1.9 KiB
Bash
Executable File
102 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## Author : Aditya Shakya (adi1090x)
|
|
## Github : @adi1090x
|
|
#
|
|
## Rofi : Power Menu
|
|
#
|
|
|
|
# CMDs
|
|
uptime="`uptime -p | sed -e 's/up //g'`"
|
|
host=`hostname`
|
|
|
|
# Options
|
|
shutdown=''
|
|
reboot=''
|
|
lock=''
|
|
suspend=''
|
|
logout=''
|
|
yes=''
|
|
no=''
|
|
|
|
# Rofi CMD
|
|
rofi_cmd() {
|
|
rofi -dmenu \
|
|
-p "$host uptime: $uptime" \
|
|
-mesg "$host uptime: $uptime" \
|
|
-theme ~/.config/rofi/powermenu/powermenu.rasi
|
|
}
|
|
|
|
# Confirmation CMD
|
|
confirm_cmd() {
|
|
rofi -dmenu \
|
|
-p 'Confirmation' \
|
|
-mesg 'Confirm '${chosen} \
|
|
-theme ~/.config/rofi/powermenu/confirm.rasi
|
|
}
|
|
|
|
# Ask for confirmation
|
|
confirm_exit() {
|
|
echo -e "$yes\n$no" | confirm_cmd ${chosen}
|
|
}
|
|
|
|
# Pass variables to rofi dmenu
|
|
run_rofi() {
|
|
echo -e "$lock\n$suspend\n$logout\n$reboot\n$shutdown" | rofi_cmd
|
|
}
|
|
|
|
# Execute Command
|
|
run_cmd() {
|
|
selected="$(confirm_exit)"
|
|
if [[ "$selected" == "$yes" ]]; then
|
|
if [[ $1 == '--shutdown' ]]; then
|
|
systemctl poweroff
|
|
elif [[ $1 == '--reboot' ]]; then
|
|
systemctl reboot
|
|
elif [[ $1 == '--suspend' ]]; then
|
|
mpc -q pause
|
|
amixer set Master mute
|
|
systemctl suspend
|
|
elif [[ $1 == '--logout' ]]; then
|
|
if [[ "$DESKTOP_SESSION" == 'openbox' ]]; then
|
|
openbox --exit
|
|
elif [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then
|
|
bspc quit
|
|
elif [[ "$DESKTOP_SESSION" == 'i3' ]]; then
|
|
i3-msg exit
|
|
elif [[ "$DESKTOP_SESSION" == 'plasma' ]]; then
|
|
qdbus org.kde.ksmserver /KSMServer logout 0 0 0
|
|
elif [[ "$DESKTOP_SESSION" == 'hyprland' ]]; then
|
|
hyprctl dispatch exit
|
|
fi
|
|
fi
|
|
else
|
|
exit 0
|
|
fi
|
|
}
|
|
|
|
# Actions
|
|
chosen="$(run_rofi)"
|
|
case ${chosen} in
|
|
$shutdown)
|
|
run_cmd --shutdown
|
|
;;
|
|
$reboot)
|
|
run_cmd --reboot
|
|
;;
|
|
$lock)
|
|
if [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then
|
|
betterlockscreen -l
|
|
elif [[ "$DESKTOP_SESSION" == 'hyprland' ]]; then
|
|
killall rofi
|
|
wlogout -P 1 -s -r 10 -c 10
|
|
fi
|
|
;;
|
|
$suspend)
|
|
run_cmd --suspend
|
|
;;
|
|
$logout)
|
|
run_cmd --logout
|
|
;;
|
|
esac
|