diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/home/i3wm/nord-blue/i3.nix | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/modules/home/i3wm/nord-blue/i3.nix b/modules/home/i3wm/nord-blue/i3.nix index 42bd0d9..c861c28 100644 --- a/modules/home/i3wm/nord-blue/i3.nix +++ b/modules/home/i3wm/nord-blue/i3.nix @@ -20,11 +20,27 @@ in }; colors = { - border = vars.colors.background-secondary; - childBorder = vars.colors.background-secondary; - background = vars.colors.background; - text = vars.colors.foreground; - indicator = vars.colors.foreground; + focused = { + border = vars.colors.background-secondary; + childBorder = vars.colors.background-secondary; + background = vars.colors.background; + text = vars.colors.foreground; + indicator = vars.colors.foreground; + }; + focusedInactive = { + border = vars.colors.background; + childBorder = vars.colors.background; + background = vars.colors.background; + text = vars.colors.foreground; + indicator = vars.colors.foreground; + }; + unfocused = { + border = vars.colors.background; + childBorder = vars.colors.background; + background = vars.colors.background; + text = vars.colors.foreground; + indicator = vars.colors.foreground; + }; }; startup = [ |
