Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

variables: add the general:snap subcategory #814

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 30 additions & 20 deletions pages/Configuring/Variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,36 @@ SHIFT CAPS CTRL/CONTROL ALT MOD2 MOD3 SUPER/WIN/LOGO/MOD4 MOD5
| allow_tearing | master switch for allowing tearing to occur. See [the Tearing page](../Tearing). | bool | false |
| resize_corner | force floating windows to use a specific corner when being resized (1-4 going clockwise from top left, 0 to disable) | int | 0 |

#### Snap

_Subcategory `general:snap:`_

| name | description | type | default |
| --- | --- | --- | --- |
| enabled | enable snapping for floating windows | bool | false |
| window_gap | minimum gap in pixels between windows before snapping | int | 10 |
| monitor_gap | minimum gap in pixels between window and monitor edges before snapping | int | 10 |

{{< callout type=important >}}

A subcategory is a nested category:

```ini
general {
# ...
# ...

snap {
# ...
# ...
}
}
```

Doing `general:snap {` is **invalid**!

{{< /callout >}}

### Decoration

| name | description | type | default |
Expand Down Expand Up @@ -115,26 +145,6 @@ _Subcategory `decoration:blur:`_
| popups | whether to blur popups (e.g. right-click menus) | bool | false |
| popups_ignorealpha | works like ignorealpha in layer rules. If pixel opacity is below set value, will not blur. [0.0 - 1.0] | float | 0.2 |

{{< callout type=important >}}

A subcategory is a nested category:

```ini
decoration {
# ...
# ...

blur {
# ...
# ...
}
}
```

Doing `decoration:blur {` is **invalid**!

{{< /callout >}}

{{< callout type=info >}}

`blur:size` and `blur:passes` have to be at least 1.
Expand Down