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 = {
|
2021-04-22 01:23:00 +02:00
|
|
|
background = base3;
|
2021-04-21 04:06:51 +02:00
|
|
|
statusline = yellow;
|
|
|
|
separator = red;
|
|
|
|
|
|
|
|
focusedWorkspace = {
|
2021-04-22 01:23:00 +02:00
|
|
|
border = blue;
|
|
|
|
background = blue;
|
|
|
|
text = base3; # base2 ?
|
2021-04-21 04:06:51 +02:00
|
|
|
};
|
|
|
|
inactiveWorkspace = {
|
2021-04-22 01:23:00 +02:00
|
|
|
border = base2;
|
|
|
|
background = base2;
|
|
|
|
text = base00;
|
2021-04-21 04:06:51 +02:00
|
|
|
};
|
|
|
|
activeWorkspace = {
|
2021-04-22 01:23:00 +02:00
|
|
|
border = blue;
|
|
|
|
background = base2;
|
2021-04-21 04:06:51 +02:00
|
|
|
text = yellow;
|
|
|
|
};
|
|
|
|
urgentWorkspace = {
|
|
|
|
border = red;
|
|
|
|
background = red;
|
2021-04-22 01:23:00 +02:00
|
|
|
text = base3;
|
2021-04-21 04:06:51 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
focused = {
|
|
|
|
border = blue;
|
|
|
|
background = blue;
|
2021-04-22 01:23:00 +02:00
|
|
|
text = base3;
|
|
|
|
indicator = magenta;
|
|
|
|
childBorder = blue;
|
2021-04-21 04:06:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
focusedInactive = {
|
2021-04-22 01:23:00 +02:00
|
|
|
border = base2;
|
|
|
|
background = base2;
|
|
|
|
text = base00;
|
|
|
|
indicator = magenta;
|
|
|
|
childBorder = base2;
|
2021-04-21 04:06:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
unfocused = {
|
2021-04-22 01:23:00 +02:00
|
|
|
border = base2;
|
|
|
|
background = base2;
|
|
|
|
text = base00;
|
|
|
|
indicator = magenta;
|
|
|
|
childBorder = base2;
|
2021-04-21 04:06:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
urgent = {
|
2021-04-22 01:23:00 +02:00
|
|
|
border = orange;
|
|
|
|
background = orange;
|
|
|
|
text = base3;
|
|
|
|
indicator = magenta;
|
|
|
|
childBorder = orange;
|
2021-04-21 04:06:51 +02:00
|
|
|
};
|
|
|
|
}
|