diff options
| author | allusive-dev <[email protected]> | 2023-11-03 13:40:14 +1100 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-11-03 13:40:14 +1100 |
| commit | d32b3b1e6346d92b20e71defa3052c86ffb4971a (patch) | |
| tree | dde367429def193b40034d3ac05bc1ea30a3b527 | |
| parent | DWM inactive-opacity patches (diff) | |
| download | compfy-d32b3b1e6346d92b20e71defa3052c86ffb4971a.tar.xz compfy-d32b3b1e6346d92b20e71defa3052c86ffb4971a.zip | |
Sample config updates again
| -rw-r--r-- | picom.sample.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/picom.sample.conf b/picom.sample.conf index 83d99e2..de27a67 100644 --- a/picom.sample.conf +++ b/picom.sample.conf @@ -1,3 +1,8 @@ + +# Enables patches for specific window managers. +# Currently patched: "awesome", "dwm" +wm-support = "none"; + ################################# # ANIMATIONS # ################################# @@ -31,6 +36,16 @@ animation-for-open-window = "zoom"; # Options: ("none","zoom","fly-in","slide-up","slide-down","slide-left","slide-right") animation-for-unmap-window = "slide-down"; +# Exclude certain windows from having a open animation. +animation-open-exclude = [ + "class_g = 'change-me'" +]; + +# Exclude certain windows from having a closing animation. +animation-unmap-exclude = [ + "class_g = 'change-me'" +]; + ################################# # Shadows # |