diff options
| author | JaKooLit <jimmielovejay@gmail.com> | 2023-12-07 11:17:40 +0900 |
|---|---|---|
| committer | JaKooLit <jimmielovejay@gmail.com> | 2023-12-07 11:17:40 +0900 |
| commit | e5aaed60240f41fde318ab957703cbab76d0c99c (patch) | |
| tree | 603e870aa2d7e9903ecf6bb8c20875871d53d1d7 | |
| parent | 86ccfafed6083d36a38714867202545ed83ae8b2 (diff) | |
dunst with a more brighter text on dark mode
| -rwxr-xr-x | config/dunst/dunstrc | 6 | ||||
| -rwxr-xr-x | config/hypr/scripts/DarkLight.sh | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc index e20c4cc8..74d500d9 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 2072e1be..dc7adda0 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" |
