1
0
forked from extern/nix-config

hyprland: Slightly reduce gaps

This commit is contained in:
Donovan Glover 2023-07-03 14:52:59 -04:00
parent d5cba73fef
commit 4722cd0f64
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -9,10 +9,10 @@ in
executable = true; executable = true;
text = /* bash */ '' text = /* bash */ ''
#/usr/bin/env bash #/usr/bin/env bash
hyprctl keyword general:gaps_out $((16 - $(hyprctl getoption general:gaps_out -j | jq -r ".int"))) hyprctl keyword general:gaps_out $((10 - $(hyprctl getoption general:gaps_out -j | jq -r ".int")))
hyprctl keyword general:gaps_in $((8 - $(hyprctl getoption general:gaps_in -j | jq -r ".int"))) hyprctl keyword general:gaps_in $((5 - $(hyprctl getoption general:gaps_in -j | jq -r ".int")))
hyprctl keyword general:border_size $((5 - $(hyprctl getoption general:border_size -j | jq -r ".int"))) hyprctl keyword general:border_size $((3 - $(hyprctl getoption general:border_size -j | jq -r ".int")))
hyprctl keyword decoration:rounding $((10 - $(hyprctl getoption decoration:rounding -j | jq -r ".int"))) hyprctl keyword decoration:rounding $((8 - $(hyprctl getoption decoration:rounding -j | jq -r ".int")))
''; '';
}; };