dunst: kill daemon on configuration change
Since Dunst is DBus activated it is OK to simply kill it since DBus
will restart it when necessary.
(cherry picked from commit faee571850
)
This commit is contained in:
parent
f60f0c647f
commit
3c429c2462
|
@ -155,7 +155,17 @@ in
|
||||||
}
|
}
|
||||||
|
|
||||||
(mkIf (cfg.settings != {}) {
|
(mkIf (cfg.settings != {}) {
|
||||||
xdg.configFile."dunst/dunstrc".text = toDunstIni cfg.settings;
|
xdg.configFile."dunst/dunstrc" = {
|
||||||
|
text = toDunstIni cfg.settings;
|
||||||
|
onChange = ''
|
||||||
|
pkillVerbose=""
|
||||||
|
if [[ -v VERBOSE ]]; then
|
||||||
|
pkillVerbose="-e"
|
||||||
|
fi
|
||||||
|
$DRY_RUN_CMD ${pkgs.procps}/bin/pkill -u $USER $pkillVerbose dunst
|
||||||
|
unset pkillVerbose
|
||||||
|
'';
|
||||||
|
};
|
||||||
})
|
})
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue