blob: 7645ba94e6fc4a33d1dd79b15fe1f2c6f0320b62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
config,
lib,
...
}:
{
config = lib.mkIf config.beeMods.windowManagers.mango.enable {
xdg.configFile = {
"matugen/templates/mango.conf" = {
text = ''
rootcolor={{colors.background.default.hex_stripped}}ff
bordercolor={{colors.outline_variant.default.hex_stripped}}ff
focuscolor={{colors.primary.default.hex_stripped}}ff
maximizescreencolor={{colors.secondary_container.default.hex_stripped}}ff
urgentcolor={{colors.error.default.hex_stripped}}ff
scratchpadcolor={{colors.tertiary.default.hex_stripped}}ff
globalcolor={{colors.secondary_container.default.hex_stripped}}ff
overlaycolor={{colors.tertiary_container.default.hex_stripped}}ff
'';
};
};
};
}
|