1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 05:47:29 +02:00

hyprland: fix reloading

Fix hyprctl erroring out due to HIS.
This commit is contained in:
Mihai Fufezan 2024-02-24 22:04:47 +02:00 committed by Mikilio
parent 7f1470c203
commit 6b87f2846d
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F

View file

@ -247,10 +247,8 @@ in {
onChange = lib.mkIf (cfg.package != null) ''
( # Execute in subshell so we don't poision environment with vars
if [[ -d "/tmp/hypr" ]]; then
# This var must be set for hyprctl to function, but the value doesn't matter.
export HYPRLAND_INSTANCE_SIGNATURE="bogus"
for i in $(${cfg.finalPackage}/bin/hyprctl instances -j | jq ".[].instance" -r); do
HYPRLAND_INSTANCE_SIGNATURE=$i ${cfg.finalPackage}/bin/hyprctl reload config-only
${cfg.finalPackage}/bin/hyprctl -i "$i" reload config-only
done
fi
)