1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-12 01:33:40 +02:00

sway: use configured package in reload script

Fixes unnecessary download of the plain `sway` package.
This commit is contained in:
Robert Helgesson 2020-11-14 10:38:58 +01:00
parent b5e7817de2
commit 7c3c64208e
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -399,7 +399,7 @@ in {
swaySocket=''${XDG_RUNTIME_DIR:-/run/user/$UID}/sway-ipc.$UID.$(${pkgs.procps}/bin/pgrep -x sway || ${pkgs.coreutils}/bin/true).sock
if [ -S $swaySocket ]; then
echo "Reloading sway"
$DRY_RUN_CMD ${pkgs.sway}/bin/swaymsg -s $swaySocket reload
$DRY_RUN_CMD ${cfg.package}/bin/swaymsg -s $swaySocket reload
fi
'';
};