summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-mango.nix
diff options
context:
space:
mode:
authorbeeb5k <beebeeb5k@gmail.com>2026-03-06 21:37:34 +0530
committerbeeb5k <beebeeb5k@gmail.com>2026-03-06 21:37:34 +0530
commit0de067092c9dd19c3352554e39de73e172f29b42 (patch)
tree4175503766405733846687efdb29657bb322dccd /common/modules/matugen/templates/matugen-mango.nix
parentf1de2014dcd426e015a2638222160d9d349ea4e5 (diff)
Add modules
Diffstat (limited to 'common/modules/matugen/templates/matugen-mango.nix')
-rw-r--r--common/modules/matugen/templates/matugen-mango.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/common/modules/matugen/templates/matugen-mango.nix b/common/modules/matugen/templates/matugen-mango.nix
new file mode 100644
index 0000000..b6a89b2
--- /dev/null
+++ b/common/modules/matugen/templates/matugen-mango.nix
@@ -0,0 +1,24 @@
+{
+ config,
+ lib,
+ ...
+}:
+{
+ config = lib.mkIf config.beeMods.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
+ '';
+ };
+ };
+ };
+}