aboutsummaryrefslogtreecommitdiff
path: root/picom.sample.conf
diff options
context:
space:
mode:
authorallusive-dev <[email protected]>2023-11-09 11:14:39 +1100
committerallusive-dev <[email protected]>2023-11-09 11:14:39 +1100
commita51f4229715d3edc4c4b609764cc9328d9940232 (patch)
tree7e63e3e2c23fcf75d52287d9e9da14ec2af9d980 /picom.sample.conf
parentUpdate README.md (diff)
downloadcompfy-1.4.0.tar.xz
compfy-1.4.0.zip
added blur whitelist toggle according to request in #17. Deprecated focus-exclude in favor of active-exclude and inactive-exclude. Focus wintype option now works as expected1.4.0
Diffstat (limited to 'picom.sample.conf')
-rw-r--r--picom.sample.conf15
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'"
];