You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
2.2 KiB
Bash
112 lines
2.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
## Author : Aditya Shakya (adi1090x)
|
|
## Github : @adi1090x
|
|
## Modifcations : spinach
|
|
#
|
|
## Rofi : Power Menu
|
|
#
|
|
## Available Styles
|
|
#
|
|
# dropdown-round-nobg dropdown-round
|
|
# horizontal-round-uptime horizontal-round
|
|
|
|
# Current Theme
|
|
dir="$HOME/.config/rofi/scripts/powermenu"
|
|
theme='dropdown-round-nobg'
|
|
# override with argument
|
|
if [[ -n "$1" ]] ; then
|
|
theme="$1"
|
|
fi
|
|
|
|
# CMDs
|
|
uptime="`uptime -p | sed -e 's/up //g'`"
|
|
|
|
# Options nerdfont compaitable
|
|
shutdown=''
|
|
reboot=''
|
|
lock=''
|
|
suspend=''
|
|
logout=''
|
|
yes=''
|
|
no=''
|
|
|
|
# Rofi CMD
|
|
rofi_cmd() {
|
|
rofi -dmenu \
|
|
-p "Uptime: $uptime" \
|
|
-mesg "Uptime: $uptime" \
|
|
-theme ${dir}/${theme}.rasi
|
|
}
|
|
|
|
# Confirmation CMD
|
|
confirm_cmd() {
|
|
rofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 350px;}' \
|
|
-theme-str 'mainbox {children: [ "message", "listview" ];}' \
|
|
-theme-str 'listview {columns: 2; lines: 1;}' \
|
|
-theme-str 'element-text {horizontal-align: 0.5;}' \
|
|
-theme-str 'textbox {horizontal-align: 0.5;}' \
|
|
-dmenu \
|
|
-p 'Confirmation' \
|
|
-mesg 'Are you Sure?' \
|
|
-theme ${dir}/${theme}.rasi
|
|
}
|
|
|
|
# Ask for confirmation
|
|
confirm_exit() {
|
|
echo -e "$yes\n$no" | confirm_cmd
|
|
}
|
|
|
|
# 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
|
|
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
|
|
fi
|
|
fi
|
|
else
|
|
exit 0
|
|
fi
|
|
}
|
|
|
|
# Actions
|
|
chosen="$(run_rofi)"
|
|
case ${chosen} in
|
|
$shutdown)
|
|
run_cmd --shutdown
|
|
;;
|
|
$reboot)
|
|
run_cmd --reboot
|
|
;;
|
|
$lock)
|
|
# custom i3lock script
|
|
i3lock-blur
|
|
;;
|
|
$suspend)
|
|
run_cmd --suspend
|
|
;;
|
|
$logout)
|
|
run_cmd --logout
|
|
;;
|
|
esac
|