diff options
Diffstat (limited to '')
-rw-r--r-- | .config/dunst/dunstrc | 23 | ||||
-rw-r--r-- | .config/picom.conf | 10 |
2 files changed, 18 insertions, 15 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index 493a8a1..69ad80a 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -10,7 +10,7 @@ separator_height = 4 padding = 2 horizontal_padding = 10 - frame_width = 2 + frame_width = 3 close = ctrl+space history = ctrl+grave context = ctrl+shift+period @@ -75,23 +75,26 @@ [urgency_low] # IMPORTANT: colors have to be defined in quotation marks. # Otherwise the "#" and following would be interpreted as a comment. - background = "#32302f" - foreground = "#b8a994" - frame_color = "#887964" + background = "#282828" + #foreground = "#b8a994" + #frame_color = "#887964" + foreground = "#a89984" + frame_color = "#a89984" + highlight = "#a89984" timeout = 10 # Icon for notifications with low urgency, uncomment to enable #icon = /path/to/icon [urgency_normal] - background = "#cc241d" - foreground = "#ebdbb2" - frame_color = "#ebdbb2" + background = "#282828" + foreground = "#458588" + frame_color = "#458588" timeout = 10 [urgency_critical] - background = "#cc241d" - foreground = "#ebdbb2" - frame_color = "#b77901" + background = "#282828" + foreground = "#cc241d" + frame_color = "#cc241d" timeout = 20 # Every section that isn't one of the above is interpreted as a rules to diff --git a/.config/picom.conf b/.config/picom.conf index dc1dfb2..f4afb05 100644 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -23,7 +23,7 @@ no-use-damage = true; # detect-rounded-corners = true; # Enabled client-side shadows on windows. -shadow = true; +shadow = false; # The blur radius for shadows. (default 12) shadow-radius = 12; # The left offset for shadows. (default -15) @@ -97,13 +97,13 @@ wintypes: }; dock = { shadow = true; } dnd = { shadow = false; } - popup_menu = { - opacity = 1.0; + popup_menu = { + opacity = 1.0; shadow = false; fade = false; } - dropdown_menu = { - opacity = 1.0; + dropdown_menu = { + opacity = 1.0; fade = false; } }; |