From fbf14ab37d83812f2b051995d91ef9409ea65d6c Mon Sep 17 00:00:00 2001 From: memchr <118117622+memchr@users.noreply.github.com> Date: Fri, 15 Sep 2023 11:07:29 +0000 Subject: [PATCH] improve documentation of group locks (#346) --- pages/Configuring/Dispatchers.md | 5 ++++- pages/IPC/_index.md | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pages/Configuring/Dispatchers.md b/pages/Configuring/Dispatchers.md index 257ecac..651b0d3 100644 --- a/pages/Configuring/Dispatchers.md +++ b/pages/Configuring/Dispatchers.md @@ -91,7 +91,10 @@ A group is like i3wm’s “tabbed” container. It takes the space of one windo The new group’s border colors are configurable with the appropriate `col.` settings in the general config section. -You can lock a group with the `lockgroups` bind dispatcher in order to stop new windows from entering groups. +You can lock a group with the `lockactivegroup` dispatcher in order to stop new window from entering this group. +In addition, the `lockgroups` dispatcher can be used to toggle an independent global group lock that will prevent +new window from entering any groups, regardless of their local group lock stat. + # Workspaces You have eight choices: diff --git a/pages/IPC/_index.md b/pages/IPC/_index.md index a0748ad..604a077 100644 --- a/pages/IPC/_index.md +++ b/pages/IPC/_index.md @@ -52,7 +52,8 @@ e.g.: `workspace>>2` | minimize | emitted when a window requests a change to its minimized state. `MINIMIZED` is either 0 or 1. | `WINDOWADDRESS,MINIMIZED` | | 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` | -| ignoregrouplock | emitted when ignoregrouplock is toggled. | `0/1` | +| ignoregrouplock | emitted when `ignoregrouplock` is toggled. | `0/1` | +| lockgroups | emitted when `lockgroups` is toggled. | `0/1` | {{< hint type=warning >}} A fullscreen event is not guaranteed to fire on/off once in succession.