nix/modules/wm/home/dunst/default.nix

35 lines
703 B
Nix
Raw Normal View History

2024-11-24 16:19:57 +01:00
{
2024-10-20 11:11:07 +02:00
services.dunst = {
2024-08-31 16:04:57 +02:00
enable = true;
2024-09-16 22:05:52 +02:00
settings = {
global = {
2024-11-24 16:19:57 +01:00
background = "#282828";
foreground = "#D5C4A1";
2024-09-16 22:05:52 +02:00
geometry = "300x60-3+200";
2024-09-16 22:22:41 +02:00
padding = 8;
horizontal_padding = 8;
separator_height = 2;
frame_width = 4;
corner_radius = 5;
2024-11-24 16:19:57 +01:00
font = "DejaVuSansMono 12";
2024-09-16 22:22:41 +02:00
alignment = "center";
vertical_alignment = "center";
ellipsize = "middle";
ignore_newline = false;
2024-09-16 22:05:52 +02:00
};
2024-08-31 16:04:57 +02:00
2024-09-16 22:05:52 +02:00
urgency_low = {
2024-11-24 16:19:57 +01:00
frame_color = "#98971a";
2024-09-16 22:05:52 +02:00
};
2024-08-31 16:04:57 +02:00
2024-09-16 22:05:52 +02:00
urgency_normal = {
2024-11-24 16:19:57 +01:00
frame_color = "#458588";
2024-09-16 22:05:52 +02:00
};
2024-08-31 16:04:57 +02:00
2024-09-16 22:05:52 +02:00
urgency_critical = {
2024-11-24 16:19:57 +01:00
frame_color = "#98971a";
2024-09-16 22:05:52 +02:00
};
};
2024-08-31 16:04:57 +02:00
};
}