feat: add and configure dunst notification daemon

mandlm 2022-10-24 16:18:52 +02:00
parent 4645ab3567
commit 2c1b3e4ce3
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 31 additions and 0 deletions

View File

@ -104,5 +104,36 @@ in
};
unclutter.enable = true;
dunst = {
enable = true;
settings = {
global = {
follow = "keyboard";
font = "DejaVu Sans Mono 10";
};
urgency_low = {
frame_color = "#268bd2";
foreground = "#268bd2";
background = "#002b36";
timeout = 4;
};
urgency_normal = {
frame_color = "#859900";
foreground = "#859900";
background = "#002b36";
timeout = 6;
};
urgency_critical = {
frame_color = "#dc322f";
foreground = "#dc322f";
background = "#002b36";
timeout = 8;
};
};
};
};
}