summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-dunst.nix
blob: 9b523d3c1d17703b2cd388d838cb5b731e209ad9 (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
{
  xdg.configFile."matugen/templates/dunstrc" = {
    text = ''
      [global]
      frame_color = "{{colors.primary.default.hex}}"
      separator_color = "{{colors.primary_container.default.hex}}"

      [urgency_low]
      background = "{{colors.surface.default.hex}}"
      foreground = "{{colors.on_surface.default.hex}}"
      highlight = "{{colors.primary.default.hex}}"

      [urgency_normal]
      background = "{{colors.surface.default.hex}}"
      foreground = "{{colors.on_surface.default.hex}}"
      highlight = "{{colors.primary.default.hex}}"

      [urgency_critical]
      background = "{{colors.error_container.default.hex}}"
      foreground = "{{colors.on_error_container.default.hex}}"
      frame_color = "{{colors.error.default.hex}}"
      highlight = "{{colors.error.default.hex}}"
    '';
  };
}