nixos-configuration/home/dunst.nix

38 lines
962 B
Nix
Raw Permalink Normal View History

2022-02-15 15:44:40 +01:00
{ pkgs, ... }: {
services.dunst = {
enable = true;
settings = {
2022-11-14 00:16:32 +01:00
/* https://dunst-project.org/static/dunstrc1 */
2022-02-15 15:44:40 +01:00
global = {
2022-11-14 00:16:32 +01:00
follow = true;
format = "<b>%s</b>\n%b";
markup = "full";
alignment = "center";
vertical_alignment = "center";
ignore_newline = false;
2022-02-15 15:44:40 +01:00
indicate_hidden = true;
2022-11-14 00:16:32 +01:00
progress_bar = true;
2022-02-15 15:44:40 +01:00
word_wrap = true;
sticky_history = true;
2022-11-14 00:16:32 +01:00
mouse_left_click = "close_current";
mouse_middle_click = "do_action, close_current";
2022-02-15 15:44:40 +01:00
};
urgency_low = {
2022-11-14 00:16:32 +01:00
frame_color = "#3B7C87";
foreground = "#3B7C87";
background = "#191311";
2022-02-15 15:44:40 +01:00
};
urgency_normal = {
2022-11-14 00:16:32 +01:00
frame_color = "#5B8234";
foreground = "#5B8234";
background = "#191311";
2022-02-15 15:44:40 +01:00
};
urgency_critical = {
2022-11-14 00:16:32 +01:00
frame_color = "#B7472A";
foreground = "#B7472A";
background = "#191311";
2022-02-15 15:44:40 +01:00
};
};
};
}