From 344f257aff5f7b011d943033a743e37600c43b3f Mon Sep 17 00:00:00 2001 From: Beni <73666440+beni69@users.noreply.github.com> Date: Mon, 10 Apr 2023 20:16:10 +0000 Subject: [PATCH] IPC: add socat -U flag to example (#181) --- pages/IPC/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/IPC/_index.md b/pages/IPC/_index.md index 946ff86..24f1e5a 100644 --- a/pages/IPC/_index.md +++ b/pages/IPC/_index.md @@ -68,5 +68,5 @@ function handle { fi } -socat - UNIX-CONNECT:/tmp/hypr/$(echo $HYPRLAND_INSTANCE_SIGNATURE)/.socket2.sock | while read line; do handle $line; done +socat -U - UNIX-CONNECT:/tmp/hypr/$(echo $HYPRLAND_INSTANCE_SIGNATURE)/.socket2.sock | while read line; do handle $line; done ```