mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2025-12-20 03:30:02 +01:00
Configuring/Keywords Update to new layer rules
This requires further review. I am not sure what to do with address matching, and whether `unset` is still a valid rule.
This commit is contained in:
parent
2025ccd03c
commit
2aefeaa37d
1 changed files with 4 additions and 4 deletions
|
|
@ -148,9 +148,9 @@ notification overlays, bars, etc.
|
||||||
If you want to blur them, use a layer rule:
|
If you want to blur them, use a layer rule:
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
layerrule = blur, NAMESPACE
|
layerrule = match:namespace NAMESPACE, blur
|
||||||
# or
|
# or
|
||||||
layerrule = blur, address:0x<ADDRESS>
|
layerrule = address:0x<ADDRESS>, blur
|
||||||
```
|
```
|
||||||
|
|
||||||
You can get the namespace / address from `hyprctl layers`.
|
You can get the namespace / address from `hyprctl layers`.
|
||||||
|
|
@ -158,13 +158,13 @@ You can get the namespace / address from `hyprctl layers`.
|
||||||
To remove a layer rule (useful in dynamic situations) use:
|
To remove a layer rule (useful in dynamic situations) use:
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
layerrule = unset, <whatever you used before>
|
layerrule = <whatever you used before>, unset
|
||||||
```
|
```
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
layerrule = unset, NAMESPACE
|
layerrule = NAMESPACE, unset
|
||||||
```
|
```
|
||||||
|
|
||||||
## Setting the environment
|
## Setting the environment
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue