dotfiles/home/.local/bin/scripts/gui/hyprland/toggle-power-save

36 lines
879 B
Text
Raw Normal View History

#!/bin/sh
2022-11-20 02:11:17 +01:00
if [ "$#" -gt 1 ]; then
2023-07-23 00:05:23 +02:00
echo >&2 "Invalid amount of arguments!"
2022-11-20 02:11:17 +01:00
exit 1
elif [ "$#" -eq 1 ]; then
# user specified on/off mode
if [ "$1" = "on" ]; then
ENABLE=1
elif [ "$1" = "off" ]; then
ENABLE=0
else
2023-07-23 00:05:23 +02:00
echo >&2 "Argument $1 not recognized."
2022-11-20 02:11:17 +01:00
exit 1
fi
else
# Toggle mode
2023-07-23 00:05:23 +02:00
if [ "$(hyprctl getoption misc:disable_autoreload -j | jq ".int")" = "1" ]; then
2022-11-20 02:11:17 +01:00
ENABLE=1
else
ENABLE=0
fi
fi
if [ "$ENABLE" -eq 1 ]; then
echo "Enabled power saving mode"
hyprctl keyword misc:disable_autoreload true >/dev/null
2022-11-20 02:11:17 +01:00
hyprctl keyword decoration:blur false >/dev/null
hyprctl keyword decoration:drop_shadow false >/dev/null
else
echo "Disabled power saving mode"
hyprctl keyword misc:disable_autoreload false >/dev/null
2022-11-20 02:11:17 +01:00
hyprctl keyword decoration:blur true >/dev/null
hyprctl keyword decoration:drop_shadow true >/dev/null
fi