41 lines
969 B
Bash
41 lines
969 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Check if animations are disabled (game mode is active)
|
|
check_gamemode() {
|
|
HYPRGAMEMODE=$(hyprctl getoption animations:enabled | awk 'NR==1{print $2}')
|
|
if [ "$HYPRGAMEMODE" = 0 ] ; then
|
|
echo "t"
|
|
return 0
|
|
else
|
|
echo "f"
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
# Toggle game mode state
|
|
toggle_gamemode() {
|
|
HYPRGAMEMODE=$(hyprctl getoption animations:enabled | awk 'NR==1{print $2}')
|
|
if [ "$HYPRGAMEMODE" = 1 ] ; then
|
|
hyprctl --batch "\
|
|
keyword animations:enabled 0;\
|
|
keyword decoration:shadow:enabled 0;\
|
|
keyword decoration:blur:enabled 0;\
|
|
keyword general:gaps_in 0;\
|
|
keyword general:gaps_out 0;\
|
|
keyword general:border_size 1;\
|
|
keyword decoration:rounding 0"
|
|
exit
|
|
fi
|
|
hyprctl reload
|
|
}
|
|
|
|
# Main script logic
|
|
case "$1" in
|
|
check)
|
|
check_gamemode
|
|
;;
|
|
*)
|
|
toggle_gamemode
|
|
;;
|
|
esac
|