dunst: avoid error on missing dunst process

This commit is contained in:
Robert Helgesson 2019-01-14 00:04:50 +01:00
parent faee571850
commit 55100918cc
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -162,7 +162,7 @@ in
if [[ -v VERBOSE ]]; then
pkillVerbose="-e"
fi
$DRY_RUN_CMD ${pkgs.procps}/bin/pkill -u $USER $pkillVerbose dunst
$DRY_RUN_CMD ${pkgs.procps}/bin/pkill -u $USER $pkillVerbose dunst || true
unset pkillVerbose
'';
};