mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
dunst: avoid error on missing dunst process
This commit is contained in:
parent
faee571850
commit
55100918cc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue