From 89f7343426143d314b8e8d4a0f14a8a2a58fad46 Mon Sep 17 00:00:00 2001 From: tess Date: Fri, 28 Oct 2022 16:04:05 +0200 Subject: [PATCH] update dunst config --- dunst/dunstrc | 13 ++++++------- make-symlinks.sh | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/dunst/dunstrc b/dunst/dunstrc index c2857cc..b91129a 100755 --- a/dunst/dunstrc +++ b/dunst/dunstrc @@ -64,7 +64,7 @@ frame_width = 3 # Defines color of the frame around the notification window. - frame_color = "#bfef8d" + frame_color = "#e63e62" # Define a color for the separator. # possible values are: @@ -114,7 +114,7 @@ # # It's important to note that markup inside the format option will be parsed # regardless of what this is set to. - markup = full + markup = no # The format of the message. Possible variables are: # %a appname @@ -293,22 +293,21 @@ # Otherwise the "#" and following would be interpreted as a comment. background = "#031014" foreground = "#ee8def" - frame_color = "#bfef8d" timeout = 10 # Icon for notifications with low urgency, uncomment to enable #icon = /path/to/icon [urgency_normal] background = "#031014" - foreground = "#ee8def" - frame_color = "#bfef8d" + foreground = "#e63e62" timeout = 10 # Icon for notifications with normal urgency, uncomment to enable #icon = /path/to/icon [urgency_critical] - background = "#f16c56" - foreground = "#031014" + background = "#031014" + foreground = "#e63e62" + frame_color = "#f16c56" timeout = 0 # Icon for notifications with critical urgency, uncomment to enable #icon = /path/to/icon diff --git a/make-symlinks.sh b/make-symlinks.sh index 75ad7d2..315ac5a 100755 --- a/make-symlinks.sh +++ b/make-symlinks.sh @@ -12,5 +12,5 @@ mkdir -p $backup for file in $files; do mv ~/.config/$file $backup - ln -s $dir/$file ~/.config/$file + ln -s $dir/$file ~/.config/ done