From e5aaed60240f41fde318ab957703cbab76d0c99c Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 7 Dec 2023 11:17:40 +0900 Subject: [PATCH] dunst with a more brighter text on dark mode --- config/dunst/dunstrc | 6 +++--- config/hypr/scripts/DarkLight.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc index e20c4cc..74d500d 100755 --- a/config/dunst/dunstrc +++ b/config/dunst/dunstrc @@ -281,7 +281,7 @@ [urgency_low] # IMPORTANT: colors have to be defined in quotation marks. # Otherwise the "#" and following would be interpreted as a comment. - background = "#00000080" + background = "#00000095" foreground = "#fafafa" frame_color = "#3C27C7" timeout = 2 @@ -289,7 +289,7 @@ icon = $HOME/.config/dunst/images/bell.png [urgency_normal] - background = "#00000080" + background = "#00000095" foreground = "#fafafa" frame_color = "#3C27C7" timeout = 5 @@ -297,7 +297,7 @@ icon = $HOME/.config/dunst/images/bell.png [urgency_critical] - background = "#00000080" + background = "#00000095" foreground = "#fafafa" frame_color = "#3C27C7" timeout = 0 diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index 2072e1b..dc7adda 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -46,7 +46,7 @@ notify_user "$next_mode" # Change background for dunst if [ "$next_mode" = "dark" ]; then - sed -i '/background = /s/.*/ background = "#00000080"/' "${dunst_config}/dunstrc" + sed -i '/background = /s/.*/ background = "#00000095"/' "${dunst_config}/dunstrc" sed -i '/foreground = /s/.*/ foreground = "#fafafa"/' "${dunst_config}/dunstrc" else sed -i '/background = /s/.*/ background = "#FFFFFF80"/' "${dunst_config}/dunstrc"