diff options
| author | bh <qn+git@epicurus.dev> | 2026-01-26 11:50:11 +0800 |
|---|---|---|
| committer | bh <qn+git@epicurus.dev> | 2026-01-26 11:50:11 +0800 |
| commit | 58e3ec9be7fc903953b9a8546001c76c26cdcf01 (patch) | |
| tree | ffa5b3423b361e537346b5e9381ef725b011b21f /picom | |
| parent | a0320d1e9b225b8da6899682c8aba2ced3897b38 (diff) | |
Fixed Zoom
Diffstat (limited to 'picom')
| -rw-r--r-- | picom/.config/picom/picom.conf | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/picom/.config/picom/picom.conf b/picom/.config/picom/picom.conf index 00bafad..e8c0777 100644 --- a/picom/.config/picom/picom.conf +++ b/picom/.config/picom/picom.conf @@ -462,7 +462,8 @@ wintypes: }; blur-background-exclude = [ - "class_g = 'slop'" + "class_g = 'slop'", + "class_g ?= 'zoom'", ]; @@ -489,3 +490,11 @@ blur-background-exclude = [ # "100:class_g = 'maim'" # ]; +# For zoom +# Prevent blur on Zoom windows + +# Optional: remove shadows on Zoom +shadow-exclude = [ + "class_g ?= 'zoom'", +]; + |
