From 606d8e01e10e70be567ddc00d3af8cfa9e0b28ae Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 3 Jul 2023 19:07:41 -0400 Subject: [PATCH] hyprland: Reduce border_size to 2 A border size of 3 causes kitty to have an unnecessary padding shift, so 2 works better here. --- home/hyprland.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/hyprland.nix b/home/hyprland.nix index 1e24388..36a63d6 100644 --- a/home/hyprland.nix +++ b/home/hyprland.nix @@ -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"))) ''; };