From 8ee7f27ee00b39cdda876c448f4d4376e89d59d5 Mon Sep 17 00:00:00 2001 From: M1dgard Date: Thu, 5 Apr 2018 21:35:19 +0200 Subject: [PATCH] Fix notifications It's a bug in Dunst which causes colours not to be set when you change the urgency. Workaround by setting colours manually --- dunstrc.ini | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/dunstrc.ini b/dunstrc.ini index 4f6f191..28db7f2 100644 --- a/dunstrc.ini +++ b/dunstrc.ini @@ -324,15 +324,21 @@ # summary = *twitter.com* # urgency = normal -# Apparently these don't work! I have no idea why! [nextcloud-one-file] - summary = Sync Activity - body = * has been updated. - urgency = low + summary = Sync Activity + body = * has been updated. + urgency = low + background = "#222222" + foreground = "#888888" + timeout = 5 [nextcloud-more-files] - summary = Sync Activity - body = * have been updated. - urgency = low + summary = Sync Activity + body = * have been updated. + urgency = low + background = "#222222" + foreground = "#888888" + timeout = 5 + # vim: set ts=4 sw=4 et ft=cfg :