🚀 rework theming module

This commit is contained in:
Moritz Böhme 2022-08-31 17:34:11 +02:00
parent cf231cf182
commit 270623ea17
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
6 changed files with 930 additions and 583 deletions

View file

@ -87,17 +87,6 @@ in
# Set to 0 to disable.
frame_width = 0;
# Defines color of the frame around the notification window.
frame_color = "#282a36";
# Define a color for the separator.
# possible values are:
# * auto: dunst tries to find a color fitting to the background;
# * foreground: use the same color as the foreground;
# * frame: use the same color as the frame;
# * anything else will be interpreted as a X color.
separator_color = "frame";
# Sort messages by urgency.
sort = "yes";
@ -283,21 +272,9 @@ in
mouse_middle_click = "do_action, close_current";
mouse_right_click = "close_all";
};
urgency_low = {
background = "#282a36";
foreground = "#6272a4";
timeout = 10;
};
urgency_normal = {
background = "#282a36";
foreground = "#bd93f9";
timeout = 10;
};
urgency_critical = {
background = "#ff5555";
foreground = "#f8f8f2";
timeout = 0;
};
urgency_low.timeout = 10;
urgency_normal.timeeout = 10;
urgency_critical.timeout = 0;
};
};
};