From 3cb337ca025745da5ea9374042ca904423c2f3b1 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 12 Jun 2023 00:31:04 +0700 Subject: [PATCH] Add documentation for ignorealpha layer rule (#247) * Update Window-Rules.md * mention that ignorezero = ignorealpha 0 --- pages/Configuring/Window-Rules.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/Configuring/Window-Rules.md b/pages/Configuring/Window-Rules.md index 6c42b66..bec41ec 100644 --- a/pages/Configuring/Window-Rules.md +++ b/pages/Configuring/Window-Rules.md @@ -163,4 +163,5 @@ or `address` is an address in the form of `address:0x[hex]` | unset | removes all layerRules previously set for a select namespace regex. Please note it has to match _exactly_ | | noanim | disables animations | | blur | enables blur for the layer | -| ignorezero | makes blur ignore fully transparent pixels of the layer | +| ignorealpha \[a\] | makes blur ignore pixels with opacity of `a` or lower. `a` is float value from 0 to 1. `a = 0` if unspecified. | +| ignorezero | makes blur ignore fully transparent pixels. Same as `ignorealpha 0`. |