diff options
Diffstat (limited to '.compton.conf')
-rw-r--r-- | .compton.conf | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.compton.conf b/.compton.conf index d11924d..4302c79 100644 --- a/.compton.conf +++ b/.compton.conf @@ -116,14 +116,18 @@ inactive-opacity-override = false; # Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
blur-background = true;
# Blur background of opaque windows with transparent frames as well.
- blur-background-frame = true;
+blur-background-frame = true;
# Do not let blur radius adjust based on window opacity.
-blur-background-fixed = false;
+blur-background-fixed = true;
blur-background-exclude = [
"window_type = 'dock'",
"window_type = 'desktop'"
];
+blur-kern = "7x7box";
+blur-method = "kawase";
+blur-strength = 5;
+
opacity-rule = [
"70:class_g *= 'XTerm'"
];
|