1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-10 21:29:48 +01:00

hyprland: fix hyprctl crash

`/tmp/hypr` must be present so `hyprctl` doesn't crash.
This commit is contained in:
Juraj Hlista 2024-01-31 17:01:18 +01:00 committed by Mikilio
parent 495b3c915a
commit f2340ee873
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F

View file

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