diff --git a/pages/Configuring/Dispatchers.md b/pages/Configuring/Dispatchers.md index e84aebc..f5d10b5 100644 --- a/pages/Configuring/Dispatchers.md +++ b/pages/Configuring/Dispatchers.md @@ -58,6 +58,8 @@ layout pages (See the sidebar). | bringactivetotop | Brings the current window to the top of the stack | none | | togglespecialworkspace | toggles a special workspace on/off | none (for the first) or name for named (name has to be a special workspace's name) | | focusurgentorlast | Focuses the urgent window or the last window | none | +| togglegroup | toggles the current active window into a group | none | +| changegroupactive | switches to the next window in a group. | b - back, f - forward. | | focuscurrentorlast | Switch focus from current to previously focused window | none | | lockgroups | Locks the groups (groups will not accept new windows) | `lock` for locking, `unlock` for unlocking | @@ -71,6 +73,15 @@ bind = MOD,KEY,exec,sleep 1 && hyprctl dispatch dpms off {{< /hint >}} +## Grouped (tabbed) windows + +Hyprland allows you to make a group from the current active window with the `togglegroup` bind dispatcher. + +A group is like i3wm’s “tabbed” container. It takes the space of one window, and you can change the window to the next one in the tabbed “group” with the `changegroupactive` bind dispatcher. + +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. # Workspaces You have eight choices: diff --git a/pages/Configuring/Dwindle-Layout.md b/pages/Configuring/Dwindle-Layout.md index d7d54fe..1fe6447 100644 --- a/pages/Configuring/Dwindle-Layout.md +++ b/pages/Configuring/Dwindle-Layout.md @@ -7,27 +7,6 @@ Dwindle splits are NOT PERMANENT. The split is determined dynamically with the W/H ratio of the parent node. If W > H, it's side-by-side. If H > W, it's top-and-bottom. You can make them permanent by enabling `preserve_split`. -# Grouped (tabbed) windows - -Dwindle allows you to make a group with the `togglegroup` bind dispatcher, and -cycle through it with `changegroupactive`. - -A group is like i3wm's "tabbed" container. It takes the space of one window, and -you can change the window to the next one in the tabbed "group". - -When creating the group, a group will be made from the current active window, -and all children (recursively!) of the parent node. The new group's border -colors are configurable with the appropriate `col.` settings in the config -section below. - -_Grouping example (make, add, toggle, remove)_ - -![groupExampleSmaller](https://user-images.githubusercontent.com/43317083/163003581-69d7a5d0-5757-4183-83f1-256cdc99c96a.gif) - -Closing windows within the groups is allowed, however, since the groups in the -backend are still a tree, if you remove a node that makes the original node -container get removed, the group will be broken back to its dwindle form. - # Config category name: `dwindle` @@ -35,8 +14,6 @@ category name: `dwindle` | name | description | type | default | |---|---|---|---|---| | pseudotile | enable pseudotiling. Pseudotiled windows retain their floating size when tiled. | bool | false | -| col.group_border | inactive (out of focus) group border color | gradient | 0x66777700 | -| col.group_border_active | active group border color | gradient | 0x66ffff00 | | force_split | 0 -> split follows mouse, 1 -> always split to the left (new = left or top) 2 -> always split to the right (new = right or bottom) | int | 0 | | preserve_split | if enabled, the split (side/top) will not change regardless of what happens to the container. | bool | false | | special_scale_factor | 0 - 1 -> specifies the scale factor of windows on the special workspace | float | 0.8 | @@ -48,7 +25,5 @@ category name: `dwindle` | dispatcher | description | params | |---|---|---| -| togglegroup | toggles the current window and its siblings (recursively) into a group | none | -| changegroupactive | switches to the next window in a group. | b - back, f - forward. | | togglesplit | toggles the split (top/side) of the current window. `preserve_split` must be enabled for toggling to work. | none | | pseudo | toggles the focused window's pseudo mode | none | diff --git a/pages/Configuring/Variables.md b/pages/Configuring/Variables.md index 3f379f5..adc5bbf 100644 --- a/pages/Configuring/Variables.md +++ b/pages/Configuring/Variables.md @@ -52,6 +52,8 @@ SHIFT CAPS CTRL/CONTROL ALT MOD2 MOD3 SUPER/WIN/LOGO/MOD4 MOD5 | gaps_out | gaps between windows and monitor edges | int | 20 | | col.inactive_border | border color for inactive windows | gradient | 0xffffffff | | col.active_border | border color for the active window | gradient | 0xff444444 | +| col.group_border | inactive (out of focus) group border color | gradient | 0x66777700 | +| col.group_border_active | active group border color | gradient | 0x66ffff00 | | cursor_inactive_timeout | in seconds, after how many seconds of cursor's inactivity to hide it. Set to `0` for never. | int | 0 | | layout | which layout to use. (Available: `dwindle`, `master`) | str | dwindle | | no_cursor_warps | if true, will not warp the cursor in many cases (focusing, keybinds, etc) | bool | false |