hyprland: Reduce border_size to 2

A border size of 3 causes kitty to have an unnecessary padding shift, so
2 works better here.
This commit is contained in:
Donovan Glover 2023-07-03 19:07:41 -04:00
parent bb51d048a9
commit 606d8e01e1
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -11,7 +11,7 @@ in
#/usr/bin/env bash
hyprctl keyword general:gaps_out $((10 - $(hyprctl getoption general:gaps_out -j | jq -r ".int")))
hyprctl keyword general:gaps_in $((5 - $(hyprctl getoption general:gaps_in -j | jq -r ".int")))
hyprctl keyword general:border_size $((3 - $(hyprctl getoption general:border_size -j | jq -r ".int")))
hyprctl keyword general:border_size $((2 - $(hyprctl getoption general:border_size -j | jq -r ".int")))
hyprctl keyword decoration:rounding $((8 - $(hyprctl getoption decoration:rounding -j | jq -r ".int")))
'';
};