summaryrefslogtreecommitdiff
path: root/hypr/gamemode.sh
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-04-23 20:26:01 -0500
committerzachir <zachir@librem.one>2023-04-23 20:26:01 -0500
commit0ffcb340ad932765f3d148a58f85891012fb6b50 (patch)
tree8ba09743fc033bebb3226379e07ef3dfdabd3f9e /hypr/gamemode.sh
parenta69e9ab07f98781863c9e1d0316785efa1b0fe46 (diff)
parent6f9af3bf5f0e8497d44ff6b7871815d3d57a877f (diff)
Merge branch 'master' of zachir.xyz:zachir/dotfiles into awesome-bling
Diffstat (limited to 'hypr/gamemode.sh')
-rwxr-xr-xhypr/gamemode.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/hypr/gamemode.sh b/hypr/gamemode.sh
new file mode 100755
index 0000000..a07ac4a
--- /dev/null
+++ b/hypr/gamemode.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env sh
+HYPRGAMEMODE=$(hyprctl getoption animations:enabled | sed -n '2p' | awk '{print $2}')
+if [ $HYPRGAMEMODE = 1 ] ; then
+ hyprctl --batch "\
+ keyword animations:enabled 0;\
+ keyword decoration:drop_shadow 0;\
+ keyword decoration:blur 0;\
+ keyword general:gaps_in 0;\
+ keyword general:gaps_out 0;\
+ keyword general:border_size 1;\
+ keyword decoration:rounding 0"
+ exit
+fi
+hyprctl reload