From 4f7f9408935676990dec92b53bf21aabb8bec6a1 Mon Sep 17 00:00:00 2001 From: darkwater Date: Fri, 4 Oct 2024 01:18:55 +0200 Subject: [PATCH] IPC: fix example (#795) --- 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 a598bf4..639f9ba 100644 --- a/pages/IPC/_index.md +++ b/pages/IPC/_index.md @@ -62,7 +62,7 @@ e.g.: `workspace>>2` | screencast | emitted when a screencopy state of a client changes. Keep in mind there might be multiple separate clients. State is 0/1, owner is 0 - monitor share, 1 - window share | `STATE,OWNER` | | windowtitle | emitted when a window title changes. | `WINDOWADDRESS` | | windowtitlev2 | emitted when a window title changes. | `WINDOWADDRESS,WINDOWTITLE` | -| togglegroup | emitted when `togglegroup` command is used.
returns `state,handle` where the `state` is a toggle status and the `handle` is one or more window addresses separated by a comma
e.g. `0,0x64cea2525760,0x64cea2522380` where `0` means that a group has been destroyed and the rest informs which windows were part of it | `0/1,WINDOWADDRESS(ES)` | +| togglegroup | emitted when `togglegroup` command is used.
returns `state,handle` where the `state` is a toggle status and the `handle` is one or more window addresses separated by a comma
e.g. `0,64cea2525760,64cea2522380` where `0` means that a group has been destroyed and the rest informs which windows were part of it | `0/1,WINDOWADDRESS(ES)` | | moveintogroup | emitted when the window is merged into a group. returns the address of a merged window | `WINDOWADDRESS` | | moveoutofgroup | emitted when the window is removed from a group. returns the address of a removed window | `WINDOWADDRESS` | | ignoregrouplock | emitted when `ignoregrouplock` is toggled. | `0/1` |