Fully updated the Hyprland config
This commit is contained in:
parent
3470ffdfd7
commit
83ab1b1d6b
24 changed files with 331 additions and 83 deletions
21
config/.config/hypr/scripts/sharp-mode.sh
Executable file
21
config/.config/hypr/scripts/sharp-mode.sh
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# Disables animations accros the desktop (as well as some other tweaks)
|
||||
# Similar to game mode but with the goal to enhance productivity
|
||||
# From Hyprland documentation - https://wiki.hyprland.org/0.41.2/Configuring/Uncommon-tips--tricks/#toggle-animationsbluretc-hotkey
|
||||
|
||||
HYPRSHARPMODE=$(hyprctl getoption animations:enabled | awk 'NR==1{print $2}')
|
||||
if [ "$HYPRSHARPMODE" = 1 ] ; then
|
||||
hyprctl --batch "\
|
||||
keyword animations:enabled 0;\
|
||||
keyword general:gaps_in 0;\
|
||||
keyword general:gaps_out 0;\
|
||||
keyword general:border_size 1;\
|
||||
keyword decoration:rounding 0"
|
||||
hyprctl notify 1 2000 0 "Enabled Sharp mode"
|
||||
exit
|
||||
fi
|
||||
|
||||
hyprctl reload
|
||||
# ~/.config/hypr/scripts/restore-waybar.sh
|
||||
hyprctl notify 1 2000 0 "Disabled Sharp mode"
|
||||
Loading…
Add table
Add a link
Reference in a new issue