From f6f0cfb3ba40776e886bc2191d585508622cbe20 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 20 Apr 2021 01:05:53 +0200 Subject: [PATCH] home: i3: finish up theme --- home/x/i3.nix | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/home/x/i3.nix b/home/x/i3.nix index bdf5a7a..e1cb7ed 100644 --- a/home/x/i3.nix +++ b/home/x/i3.nix @@ -24,6 +24,7 @@ let colorAqua = "#689d68"; colorGray = "#a89984"; colorDarkGray = "#1d2021"; + colorWhite = "#ffffff"; in { config = lib.mkIf isEnabled { @@ -76,10 +77,43 @@ in background = colorRed; text = colorBg; }; + + separator = colorRed; }; } ]; + colors = { + focused = { + border = colorBlue; + background = colorBlue; + text = colorDarkGray; + indicator = colorPurple; + childBorder = colorDarkGray; + }; + focusedInactive = { + border = colorDarkGray; + background = colorDarkGray; + text = colorYellow; + indicator = colorPurple; + childBorder = colorDarkGray; + }; + unfocused = { + border = colorDarkGray; + background = colorDarkGray; + text = colorYellow; + indicator = colorPurple; + childBorder = colorDarkGray; + }; + urgent = { + border = colorRed; + background = colorRed; + text = colorWhite; + indicator = colorRed; + childBorder = colorRed; + }; + }; + focus = { followMouse = true; mouseWarping = true;