Updated wiki to match the pull request for changing the default decoration:blur:ignore_opacity value (#857)

* Updated wiki to match the pull request for changing the default decoration:blur:ignore_opacity value

* Added a workaround for hyprwinwrap not being visible behind blurred windows
This commit is contained in:
nnra 2024-11-11 16:49:28 +01:00 committed by GitHub
parent 1741c32b0b
commit b10de8aed0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View file

@ -126,7 +126,7 @@ _Subcategory `decoration:blur:`_
| enabled | enable kawase window background blur | bool | true | | enabled | enable kawase window background blur | bool | true |
| size | blur size (distance) | int | 8 | | size | blur size (distance) | int | 8 |
| passes | the amount of passes to perform | int | 1 | | passes | the amount of passes to perform | int | 1 |
| ignore_opacity | make the blur layer ignore the opacity of the window | bool | false | | ignore_opacity | make the blur layer ignore the opacity of the window | bool | true |
| new_optimizations | whether to enable further optimizations to the blur. Recommended to leave on, as it will massively improve performance. | bool | true | | new_optimizations | whether to enable further optimizations to the blur. Recommended to leave on, as it will massively improve performance. | bool | true |
| xray | if enabled, floating windows will ignore tiled windows in their blur. Only available if new_optimizations is true. Will reduce overhead on floating blur significantly. | bool | false | | xray | if enabled, floating windows will ignore tiled windows in their blur. Only available if new_optimizations is true. Will reduce overhead on floating blur significantly. | bool | false |
| noise | how much noise to apply. [0.0 - 1.0] | float | 0.0117 | | noise | how much noise to apply. [0.0 - 1.0] | float | 0.0117 |

View file

@ -428,3 +428,10 @@ This means you have no hyprcursor theme installed, and hyprland failed to find a
### Smart gaps please? ### Smart gaps please?
[Here](../Configuring/Workspace-Rules/#smart-gaps). [Here](../Configuring/Workspace-Rules/#smart-gaps).
### Hprwinwrap is not visible through blurred windows
This is a side effect of the [decoration:blur:new_optimizations](../Configuring/Variables/#blur).
You have two options to resolve it.
1. Set `decoration:blur:new_optimizations` to `false` - This will preserve the exact same appearance, but may have a slight performance cost.
2. Set `decoration:blur:ignore_opacity` to `false` - This will drastically affect the appearance, but should maintain the original performance.