Configuring/Gestures: replace gesture with action due to misuse (#1266)

mistakenly the word gestures is used instead of  `action` in available actions part
This commit is contained in:
Señior Pijatow 2025-10-26 19:37:19 +00:00 committed by GitHub
parent 191527cdc3
commit c6f5cf3fa4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,26 +29,30 @@ gesture = 3, left, scale: 1.5, float
### Directions ### Directions
The following directions are supported: The following directions are supported:
- `swipe` -> any swipe | `direction` | Description |
- `horizontal` -> horizontal swipe | -- | -- |
- `vertical` -> vertical swipe | `swipe` | any swipe
- `left`, `right`, `up`, `down` -> swipe directions | `horizontal` | horizontal swipe
- `pinch` -> any pinch | `vertical` | vertical swipe
- `pinchin`, `pinchout` -> directional pinch | `left`, `right`, `up`, `down` | swipe directions
| `pinch` | any pinch
| `pinchin`, `pinchout` | directional pinch
## Available gestures
Specifying `unset` as the gesture will unset a specific gesture that was previously set. Please note it needs to exactly match everything
### Actions
Specifying `unset` as the action will unset a specific gesture that was previously set. Please note it needs to exactly match everything
from the original gesture including direction, mods, fingers and scale. from the original gesture including direction, mods, fingers and scale.
| gesture | description | arguments | | `action` | Description | Arguments |
| -- | -- | -- | | -- | -- | -- |
| dispatcher | the most basic, executes a dispatcher once the gesture ends | `dispatcher, params` | | `dispatcher` | the most basic, executes a dispatcher once the gesture ends | `dispatcher, params` |
| workspace | workspace swipe gesture, for switching workspaces | | `workspace` | workspace swipe gesture, for switching workspaces |
| move | moves the active window | none | | `move` | moves the active window | none |
| resize | resizes the active window | none | | `resize` | resizes the active window | none |
| special | toggles a special workspace | special workspace without the `special:`, e.g. `mySpecialWorkspace` | | `special` | toggles a special workspace | special workspace without the `special:`, e.g. `mySpecialWorkspace` |
| close | closes the active window | none | | `close` | closes the active window | none |
| fullscreen | fullscreens the active window | none for fullscreen, `maximize` for maximize | | `fullscreen` | fullscreens the active window | none for fullscreen, `maximize` for maximize |
| float | floats the active window | none for toggle, `float` or `tile` for one-way | | `float` | floats the active window | none for toggle, `float` or `tile` for one-way |