Notifications not reflecting dunstrc configs #1267
-
Issue descriptionI have installed and configured dunst over a year ago and it has always worked like a charm. Suddenly, maybe two weeks ago, the adjustments i made to the dunstrc file didn't reflect anymore. For a try i have copied the default dunstrc contents and changed the font size to 20, but the font size doesn't change, neither do the position or any background color, which are all black now, for critical and uncritical notifications. The dunstrc file is in ./config/dunst . The output of
Installation info
Minimal dunstrc# Dunstrc here
font = Monospace 20 `
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
background = "#222222"
foreground = "#888888"
timeout = 10
[urgency_normal]
background = "#285577"
foreground = "#ffffff"
timeout = 10
override_pause_level = 30
[urgency_critical]
background = "#900000"
foreground = "#ffffff"
frame_color = "#ff0000"
timeout = 0
override_pause_level = 60
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
That error indicates that some other notification daemon is runnung ( A hint: if no notification daemon is running, DBus automatically starts one when it receives the first notification. If there a multiple daemons installed, it could happen that it's not the one you like. In this case you should run it explicitly. |
Beta Was this translation helpful? Give feedback.
-
Hi, thanks for the reply and the suggestions. In my understandin, (kindly correct me if i'm wrong), the error
is not responsible for displaying the notification in the wrong color or the wrong font size, or is it? both
and
do send notifications, but the colors for simple and critical notification, and font size are not those defined in dunstrc, and even though the settings worked in the past. |
Beta Was this translation helpful? Give feedback.
-
The error is responsible for your issues as it states that
Both send notification to Maybe try to find out, why |
Beta Was this translation helpful? Give feedback.
-
Moving this to discussions, as it's not an issue with dunst, but rather the environment. Feel free to discuss further there |
Beta Was this translation helpful? Give feedback.
The error is responsible for your issues as it states that
dunst
can't start and thus your configuration can't take effect.