Cleanup dunst config

This commit is contained in:
Valentin Brandl 2022-11-14 00:16:32 +01:00
parent 3e4cd63664
commit 66708b0c1c
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9

View File

@ -2,56 +2,35 @@
services.dunst = { services.dunst = {
enable = true; enable = true;
settings = { settings = {
/* https://dunst-project.org/static/dunstrc1 */
global = { global = {
font = "Monospace 8"; follow = true;
allow_markup = true; format = "<b>%s</b>\n%b";
format = "<b>%a:</b> %s\n%b"; markup = "full";
sort = true; alignment = "center";
indicate_hidden = true; vertical_alignment = "center";
alignment = "left";
bounce_freq = 0;
show_age_threshold = 60;
word_wrap = true;
ignore_newline = false; ignore_newline = false;
geometry = "300x5-30+20"; indicate_hidden = true;
transparency = 0; progress_bar = true;
idle_threshold = 120; word_wrap = true;
monitor = 0;
follow = "keyboard";
sticky_history = true; sticky_history = true;
line_height = 0; mouse_left_click = "close_current";
separator_height = 2; mouse_middle_click = "do_action, close_current";
padding = 8;
horizontal_padding = 8;
separator_color = "frame";
startup_notification = true;
dmenu = "dmenu -p dunst:";
browser = "firefox -new-tab";
};
frame = {
width = 0;
color = "#000000";
};
shortcuts = {
close = "mod4+m";
close_all = "mod4+shift+m";
history = "mod4+n";
context = "mod4+shift+i";
}; };
urgency_low = { urgency_low = {
background = "#222222"; frame_color = "#3B7C87";
foreground = "#888888"; foreground = "#3B7C87";
timeout = 10; background = "#191311";
}; };
urgency_normal = { urgency_normal = {
background = "#285577"; frame_color = "#5B8234";
foreground = "#ffffff"; foreground = "#5B8234";
timeout = 10; background = "#191311";
}; };
urgency_critical = { urgency_critical = {
background = "#900000"; frame_color = "#B7472A";
foreground = "#ffffff"; foreground = "#B7472A";
timeout = 0; background = "#191311";
}; };
}; };
}; };