blob: 385e2128a6f5aaa7de5d1072db5d60584b223ee5 (
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
|
{
config,
lib,
...
}:
{
config = lib.mkIf config.beeMods.windowManagers.mango.enable {
xdg.configFile = {
"matugen/templates/mango.conf" = {
text = ''
shadowscolor = 0x{{colors.shadow.default.hex_stripped}}ff
rootcolor = 0x{{colors.surface.default.hex_stripped}}ff
bordercolor = 0x{{colors.outline.default.hex_stripped}}ff
focuscolor = 0x{{colors.primary.default.hex_stripped}}ff
maximizescreencolor = 0x{{colors.secondary.default.hex_stripped}}ff
urgentcolor = 0x{{colors.error.default.hex_stripped}}ff
scratchpadcolor = 0x{{colors.tertiary.default.hex_stripped}}ff
globalcolor = 0x{{colors.on_tertiary.default.hex_stripped}}ff
overlaycolor = 0x{{colors.on_primary.default.hex_stripped}}ff
'';
};
};
};
}
|