Initial commit
This commit is contained in:
commit
209ba130c0
4852 changed files with 1517959 additions and 0 deletions
25
.config/hypr/scripts/gamemode.sh
Executable file
25
.config/hypr/scripts/gamemode.sh
Executable file
|
|
@ -0,0 +1,25 @@
|
|||
#!/bin/bash
|
||||
# ____ _
|
||||
# / ___| __ _ _ __ ___ ___ _ __ ___ ___ __| | ___
|
||||
# | | _ / _` | '_ ` _ \ / _ \ '_ ` _ \ / _ \ / _` |/ _ \
|
||||
# | |_| | (_| | | | | | | __/ | | | | | (_) | (_| | __/
|
||||
# \____|\__,_|_| |_| |_|\___|_| |_| |_|\___/ \__,_|\___|
|
||||
#
|
||||
#
|
||||
|
||||
if [ -f $HOME/.config/ml4w/settings/gamemode-enabled ]; then
|
||||
hyprctl reload
|
||||
rm $HOME/.config/ml4w/settings/gamemode-enabled
|
||||
notify-send "Gamemode deactivated" "Animations and blur enabled"
|
||||
else
|
||||
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"
|
||||
touch $HOME/.config/ml4w/settings/gamemode-enabled
|
||||
notify-send "Gamemode activated" "Animations and blur disabled"
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue