diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-06-03 15:17:22 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-06-03 15:17:22 +0200 |
commit | 873442815ad9030dbf9694dbdd1a23685317f74b (patch) | |
tree | d4ff6cfa298b6d939f12a13b7fa4a4b4f4d5d595 /.compton.conf | |
parent | ef2a02441f66362e522a25ec85015baf1fc481a1 (diff) | |
download | dotfiles-873442815ad9030dbf9694dbdd1a23685317f74b.tar.gz |
Some stuff
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'"
];
|