diff options
| author | beeb5k <beebeeb5k@gmail.com> | 2026-08-17 23:03:59 +0530 |
|---|---|---|
| committer | beeb5k <beebeeb5k@gmail.com> | 2026-08-17 23:03:59 +0530 |
| commit | 46b0b8ac8bc612e4bf86478e08ada33d94dad01d (patch) | |
| tree | fe57e75f03b1706b91278eeb216b83041e75a4ba /common/modules/matugen/templates/matugen-niri.nix | |
| parent | 96feb69113b20a5de02d0634589675eb208d9cdd (diff) | |
Remove mango and user templates for noctalia
Diffstat (limited to 'common/modules/matugen/templates/matugen-niri.nix')
| -rw-r--r-- | common/modules/matugen/templates/matugen-niri.nix | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/common/modules/matugen/templates/matugen-niri.nix b/common/modules/matugen/templates/matugen-niri.nix new file mode 100644 index 0000000..2bb80ca --- /dev/null +++ b/common/modules/matugen/templates/matugen-niri.nix @@ -0,0 +1,49 @@ +{ + config, + lib, + ... +}: +{ + config = lib.mkIf (config.beeMods.windowManagers.niri.enable) { + xdg.configFile = { + "matugen/templates/matugen.kdl" = { + text = '' + layout { + focus-ring { + active-color "{{colors.primary.default.hex}}" + inactive-color "{{colors.outline.default.hex}}" + urgent-color "{{colors.error.default.hex}}" + } + + border { + active-color "{{colors.primary.default.hex}}" + inactive-color "{{colors.outline.default.hex}}" + urgent-color "{{colors.error.default.hex}}" + } + + shadow { + color "{{colors.shadow.default.hex}}" + } + + tab-indicator { + active-color "{{colors.primary.default.hex}}" + inactive-color "{{colors.outline.default.hex}}" + urgent-color "{{colors.error.default.hex}}" + } + + insert-hint { + color "{{colors.primary.default.hex}}80" + } + } + + recent-windows { + highlight { + active-color "{{colors.primary.default.hex}}" + urgent-color "{{colors.error.default.hex}}" + } + } + ''; + }; + }; + }; +} |
