summaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-05 22:41:35 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-05 22:41:35 +0100
commit3a5c740da593ffb1f24aec01ec5023c19cd19469 (patch)
treed22c70302f2e32b9ce83e79c013b2d4696907a7f /modules/home
parentfd96aac64eeb142e9ef47371359e5ffd50ad4c0c (diff)
added colours
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/i3wm/nord-blue/i3.nix8
-rw-r--r--modules/home/i3wm/nord-blue/variables.nix7
2 files changed, 13 insertions, 2 deletions
diff --git a/modules/home/i3wm/nord-blue/i3.nix b/modules/home/i3wm/nord-blue/i3.nix
index 1c3e64a..42bd0d9 100644
--- a/modules/home/i3wm/nord-blue/i3.nix
+++ b/modules/home/i3wm/nord-blue/i3.nix
@@ -19,6 +19,14 @@ in
border = 3;
};
+ colors = {
+ border = vars.colors.background-secondary;
+ childBorder = vars.colors.background-secondary;
+ background = vars.colors.background;
+ text = vars.colors.foreground;
+ indicator = vars.colors.foreground;
+ };
+
startup = [
{ command = "sh -c 'feh --bg-fill ${vars.wallpaper}'"; }
];
diff --git a/modules/home/i3wm/nord-blue/variables.nix b/modules/home/i3wm/nord-blue/variables.nix
index 4a50ffd..2880795 100644
--- a/modules/home/i3wm/nord-blue/variables.nix
+++ b/modules/home/i3wm/nord-blue/variables.nix
@@ -1,7 +1,10 @@
{
colors = {
- main = "#2D333F";
- # Add other colours
+ background = "#2D333F";
+ background-secondary = "#303446";
+ foreground = "#C6D0F5";
+ #indicator = ;
+ #childBorder = ;
};
wallpaper = "~/home/mun/Documents/4. Configuration/modules/home/i3wm/nord-blue/wallpapers/wave-minimal.png";