blob: 4000850b6c9569223023fab973e1298e69346c3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ config
, pkgs
, theme
, ...
}:
with theme;
{
xresources.properties = {
"twobwm.border_width" = 22;
"twobwm.outer_border" = 20;
"twobwm.focus_color" = base01;
"twobwm.unfocus_color" = base01;
"twobwm.fixed_color" = base0D;
"twobwm.unkill_color" = base08;
"twobwm.fixed_unkill_color" = base0E;
"twobwm.outer_border_color" = base00;
"twobwm.inverted_colors" = false;
};
}
|