1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

i3: fix unfocused borders

This commit is contained in:
2024-07-29 08:01:44 +02:00
parent 6364aa446a
commit 228d93f399

View File

@@ -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))