diff options
Diffstat (limited to 'picom.sample.conf')
| -rw-r--r-- | picom.sample.conf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/picom.sample.conf b/picom.sample.conf index 7111256..61bc10b 100644 --- a/picom.sample.conf +++ b/picom.sample.conf @@ -145,6 +145,23 @@ active-opacity = 1.0 # Dim inactive windows. (0.0 - 1.0, defaults to 0.0) # inactive-dim = 0.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 +# +# inactive-opacity-exclude = [ +# "class_g = 'dwm'" +# ]; + + +# A list of windows that should never have their opacity changed by active-opacity when focused. +# +# active-opacity-exclude = [ +# "class_g = 'dwm'" +# ]; + + # Specify a list of conditions of windows that should never be considered focused. # focus-exclude = [ # "class_g = 'Cairo-clock'" |