From 4722cd0f64202115c25b5b8e5454da0d3c2b1ce3 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 3 Jul 2023 14:52:59 -0400 Subject: [PATCH] hyprland: Slightly reduce gaps --- home/hyprland.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/hyprland.nix b/home/hyprland.nix index aca27f38..a2e0eced 100644 --- a/home/hyprland.nix +++ b/home/hyprland.nix @@ -9,10 +9,10 @@ in executable = true; text = /* bash */ '' #/usr/bin/env bash - hyprctl keyword general:gaps_out $((16 - $(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:border_size $((5 - $(hyprctl getoption general:border_size -j | jq -r ".int"))) - hyprctl keyword decoration:rounding $((10 - $(hyprctl getoption decoration:rounding -j | jq -r ".int"))) + 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 decoration:rounding $((8 - $(hyprctl getoption decoration:rounding -j | jq -r ".int"))) ''; };