dotfiles/home/modules/dunst/config/settings.nix

35 lines
734 B
Nix
Raw Normal View History

2025-01-08 19:06:14 -06:00
{flake, ...}: let
inherit
2025-01-14 16:17:42 -06:00
(flake.config.aesthetics.themes.schemes.catppuccin-macchiato)
colours
;
inherit
(flake.config.aesthetics.themes)
2025-01-08 19:06:14 -06:00
font
;
makeColor = c: "#" + c;
in {
global = {
font = "${font} 10";
2025-01-14 16:17:42 -06:00
background = makeColor colours.base;
2025-01-08 19:06:14 -06:00
corner_radius = 10;
fade_in_duration = 1000;
2025-01-14 16:17:42 -06:00
foreground = makeColor colours.text;
2025-01-08 19:06:14 -06:00
frame = 10000;
2025-01-14 16:17:42 -06:00
frame_color = makeColor colours.mauve;
2025-01-08 19:06:14 -06:00
frame_width = 1;
icon_corner_radius = 10;
monitor = 1;
offset = "20x20";
origin = "bottom-right";
progress_bar_corner_radius = 4;
timeout = 10;
transparecncy = true;
};
urgency_critical = {
2025-01-14 16:17:42 -06:00
frame_color = makeColor colours.peach;
2025-01-08 19:06:14 -06:00
timeout = 0;
};
}