blob: 614a4bc6fb64b91de5efebae8267dc005f99aef9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
config,
lib,
...
}:
{
config = lib.mkIf config.beeMods.mango.enable {
xdg.configFile."matugen/templates/colors-xresources" = {
text = ''
dwm.normbordercolor : {{colors.outline.default.hex}}
dwm.normbgcolor : {{colors.surface.default.hex}}
dwm.normfgcolor : {{colors.on_surface.default.hex}}
dwm.selbordercolor : {{colors.primary.default.hex}}
dwm.selbgcolor : {{colors.surface_container.default.hex}}
dwm.selfgcolor : {{colors.primary.default.hex}}
st.background: {{colors.surface.default.hex}}
st.foreground: {{colors.on_surface.default.hex}}
st.cursorColor: {{colors.primary.default.hex}}
st.color0: \{{color0}}
st.color8: \{{color8}}
st.color1: \{{color1}}
st.color9: \{{color9}}
st.color2: \{{color2}}
st.color10: \{{color10}}
st.color3: \{{color3}}
st.color11: \{{color11}}
st.color4: \{{color4}}
st.color12: \{{color12}}
st.color5: \{{color5}}
st.color13: \{{color13}}
st.color6: \{{color6}}
st.color14: \{{color14}}
st.color7: \{{color7}}
st.color15: \{{color15}}
'';
};
};
}
|