nixos-config/home/themes/solarizedLight/i3.nix

73 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-21 04:06:51 +02:00
let
2022-04-10 11:54:58 +02:00
inherit
(import ./colors.nix)
2022-01-11 16:08:21 +01:00
base00
base2
base3
blue
magenta
orange
red
yellow
2022-04-10 11:54:58 +02:00
;
in {
2021-04-21 04:06:51 +02:00
bar = {
background = base3;
2021-04-21 04:06:51 +02:00
statusline = yellow;
separator = red;
focusedWorkspace = {
border = blue;
background = blue;
text = base3; # base2 ?
2021-04-21 04:06:51 +02:00
};
inactiveWorkspace = {
border = base2;
background = base2;
text = base00;
2021-04-21 04:06:51 +02:00
};
activeWorkspace = {
border = blue;
background = base2;
2021-04-21 04:06:51 +02:00
text = yellow;
};
urgentWorkspace = {
border = red;
background = red;
text = base3;
2021-04-21 04:06:51 +02:00
};
};
focused = {
border = blue;
background = blue;
text = base3;
indicator = magenta;
childBorder = blue;
2021-04-21 04:06:51 +02:00
};
focusedInactive = {
border = base2;
background = base2;
text = base00;
indicator = magenta;
childBorder = base2;
2021-04-21 04:06:51 +02:00
};
unfocused = {
border = base2;
background = base2;
text = base00;
indicator = magenta;
childBorder = base2;
2021-04-21 04:06:51 +02:00
};
urgent = {
border = orange;
background = orange;
text = base3;
indicator = magenta;
childBorder = orange;
2021-04-21 04:06:51 +02:00
};
}