ipc: fix socket path

fixes #644g
This commit is contained in:
Vaxry 2024-05-10 12:23:43 +01:00
parent 00f8bfe3a6
commit c56516109e
1 changed files with 1 additions and 1 deletions

View File

@ -92,5 +92,5 @@ handle() {
esac
}
socat -U - UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock | while read -r line; do handle "$line"; done
socat -U - UNIX-CONNECT:$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock | while read -r line; do handle "$line"; done
```