neodotfiles/user/.config/rofi/scripts/rofi_power

64 lines
1.9 KiB
Text
Raw Normal View History

2022-09-13 01:06:55 +00:00
#!/usr/bin/env bash
# ***This script was made by Clay Gomera (Drake)***
# - Description: A simple power menu rofi script
# - Dependencies: rofi, power-profiles-daemon
## OPTIONS ##
2022-12-08 03:13:08 +00:00
option1=" Logout"
option2=" Reboot"
option3=" Power off"
option4="鈴 Suspend"
option5=" Lock"
option6=" Change power profile"
option7=" Cancel"
2022-09-13 01:06:55 +00:00
## OPTIONS ARRAY ##
options="$option1\n$option2\n$option3\n$option4\n$option5\n$option6\n$option7"
## POWER PROFILE OPTIONS ##
2022-09-14 14:28:06 +00:00
pwr1=" Performance"
pwr2=" Balanced"
pwr3=" Power Saver"
pwr4=" Cancel"
2022-09-13 01:06:55 +00:00
## POWER PROFILES ARRAY ##
pwrs="$pwr1\n$pwr2\n$pwr3\n$pwr4"
## MAIN ACTION COMMAND ##
2022-12-08 03:13:08 +00:00
action=$(echo -e "$options" | rofi -dmenu -p "  Power Options ")
2022-09-13 01:06:55 +00:00
case "$action" in
$option1*)
2022-09-14 00:44:31 +00:00
pkill X;;
2022-09-13 01:06:55 +00:00
$option2*)
2022-09-15 03:42:36 +00:00
systemctl reboot || loginctl reboot;;
2022-09-13 01:06:55 +00:00
$option3*)
2022-09-15 03:42:36 +00:00
systemctl poweroff || loginctl poweroff;;
2022-09-13 01:06:55 +00:00
$option4*)
betterlockscreen --suspend;;
$option5*)
betterlockscreen -l;;
$option6*)
currentpwr=$(powerprofilesctl get)
2022-12-08 03:13:08 +00:00
if [ "$currentpwr" = "performance" ]; then
currentpwr=" Performance"
elif [ "$currentpwr" = "power-saver" ]; then
currentpwr=" Power Saver"
elif [ "$currentpwr" = "balanced" ]; then
currentpwr=" Balanced"
fi
pwraction=$(echo -e "$pwrs" | rofi -dmenu -p " Select profile | Current profile: ${currentpwr} ")
2022-09-13 01:06:55 +00:00
case "$pwraction" in
$pwr1*)
powerprofilesctl set performance && notify-send "Power profile switched to performance";;
$pwr2*)
powerprofilesctl set balanced && notify-send "Power profile switched to balanced";;
$pwr3*)
powerprofilesctl set power-saver && notify-send "Power profile switched to power saver";;
$pwr4*)
exit 0
esac;;
$option7*)
exit 0
esac