From 228d93f399be3f4e02bc77cd6d3c7c75635a9ca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Mon, 29 Jul 2024 08:01:44 +0200 Subject: [PATCH] i3: fix unfocused borders --- configs/i3.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/i3.nix b/configs/i3.nix index 4f398f7..ff599c2 100644 --- a/configs/i3.nix +++ b/configs/i3.nix @@ -180,10 +180,10 @@ in { colors = let background = config.lib.stylix.colors.withHashtag.base00; in { - # unfocused = { - # border = lib.mkForce background; - # childBorder = lib.mkForce background; - # }; + unfocused = { + border = lib.mkForce background; + childBorder = lib.mkForce background; + }; }; keybindings = lib.listToAttrs (map (x: lib.nameValuePair "${modifier}+Shift+${toString x}" "move container to workspace ${toString x}") (lib.range 1 9))