From b847d1441713285d1faf4f6de8bc09c6a88bc11e Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Sun, 16 Oct 2022 22:03:01 +0100 Subject: [PATCH] apply some recommendations from Brodie --- pages/Configuring/Dwindle-Layout.md | 2 +- pages/Configuring/Monitors.md | 16 ++++++++-------- pages/Configuring/Variables.md | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pages/Configuring/Dwindle-Layout.md b/pages/Configuring/Dwindle-Layout.md index 631ca3c..fb11249 100644 --- a/pages/Configuring/Dwindle-Layout.md +++ b/pages/Configuring/Dwindle-Layout.md @@ -34,7 +34,7 @@ category name: `dwindle` | name | description | type | default | |---|---|---|---|---| -| pseudotile | enable pseudotiling | bool | false | +| pseudotile | enable pseudotiling. Pseudotiled windows retain their floating size when tiled. | bool | false | | col.group_border | inactive (out of focus) group border color | color | 0x66777700 | | col.group_border_active | active group border color | color | 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 | diff --git a/pages/Configuring/Monitors.md b/pages/Configuring/Monitors.md index a2a95f1..067332b 100644 --- a/pages/Configuring/Monitors.md +++ b/pages/Configuring/Monitors.md @@ -132,14 +132,14 @@ where `NAME` is the name, and `TRANSFORM` is an integer, from 0 to 7, corresponding to your transform of choice. ```ini -WL_OUTPUT_TRANSFORM_NORMAL = 0 -WL_OUTPUT_TRANSFORM_90 = 1 -WL_OUTPUT_TRANSFORM_180 = 2 -WL_OUTPUT_TRANSFORM_270 = 3 -WL_OUTPUT_TRANSFORM_FLIPPED = 4 -WL_OUTPUT_TRANSFORM_FLIPPED_90 = 5 -WL_OUTPUT_TRANSFORM_FLIPPED_180 = 6 -WL_OUTPUT_TRANSFORM_FLIPPED_270 = 7 +normal (no transforms) -> 0 +90 degrees -> 1 +180 degrees -> 2 +270 degrees -> 3 +flipped -> 4 +flipped + 90 degrees -> 5 +flipped + 180 degrees -> 6 +flipped + 270 degrees -> 7 ``` ## Binding workspaces to a monitor diff --git a/pages/Configuring/Variables.md b/pages/Configuring/Variables.md index 0e4145e..c4af2fd 100644 --- a/pages/Configuring/Variables.md +++ b/pages/Configuring/Variables.md @@ -16,7 +16,7 @@ the layout pages and not here. (See the Sidebar) | float | floating point number | | color | color (e.g. `0x22334455` - alpha `0x22`, red `0x33`, green `0x44`, blue `0x55`) | | vec2 | vector with 2 values (float), separated by a space (e.g. `0 0` or `-10.9 99.1`) | -| MOD | a string modmask (e.g. `SUPER` or `SUPERSHIFT` or`SUPERSHIFTALTCTRLCAPSMOD2MOD3MOD5` or empty for none) | +| MOD | a string modmask (e.g. `SUPER` or `SUPERSHIFT` or `SUPER + SHIFT` or `SUPER and SHIFT` or `CTRL_SHIFT` or empty for none. You are allowed to put any separators you please except for a `,`) | | str | a string | {{< hint type=info >}}