improve documentation of group locks (#346)

This commit is contained in:
memchr 2023-09-15 11:07:29 +00:00 committed by GitHub
parent 7302dbfa47
commit fbf14ab37d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -91,7 +91,10 @@ A group is like i3wms “tabbed” container. It takes the space of one windo
The new groups 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:

View File

@ -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.