diff options
Diffstat (limited to 'picom.sample.conf')
| -rw-r--r-- | picom.sample.conf | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/picom.sample.conf b/picom.sample.conf index 0fb8bb2..51bbf39 100644 --- a/picom.sample.conf +++ b/picom.sample.conf @@ -34,7 +34,7 @@ animation-for-open-window = "zoom"; # Set the closing window animation. # Options: ("none","zoom","fly-in","slide-up","slide-down","slide-left","slide-right") -animation-for-unmap-window = "slide-down"; +animation-for-unmap-window = "zoom"; # Exclude certain windows from having a open animation. @@ -149,6 +149,7 @@ active-opacity = 1.0 # A list of windows that should have their inactive-opacity set to whatever the active-opacity is. # Unless the window is also in active-opacity-exclude then it will be set to 1.0 or if it is set in "opacity-rule", # it will use the opacity set there as the inactive-opacity +# Also excludes effects caused by inactive-dim # # inactive-exclude = [ # "class_g = 'dwm'" @@ -157,16 +158,11 @@ active-opacity = 1.0 # A list of windows that should never have their opacity changed by active-opacity when focused. # -# active-opacity-exclude = [ +# active-exclude = [ # "class_g = 'dwm'" # ]; -# Specify a list of conditions of windows that should never be considered focused. -# focus-exclude = [ -# "class_g = 'Cairo-clock'" -#]; - # Specify a list of opacity rules, in the format `PERCENT:PATTERN`, # like `50:name *= "Firefox"`. @@ -211,9 +207,12 @@ blur-strength = 5; # blur-background = true; +# Toggle whether you want to use a blacklist or whitelist. + +blur-whitelist = true; # Whitelist for windows to have background blurring -blur-rule = [ +blur-include = [ "class_g = 'Alacritty'", "class_g = 'kitty'" ]; |