From a17d51074776f77a92fcb47bd6eb122e7a0ce6ca Mon Sep 17 00:00:00 2001
From: Salt <rehashedsalt@cock.li>
Date: Wed, 8 Aug 2018 17:26:51 -0500
Subject: [PATCH] Compton: Add blur back, use it on Conky I know I said I was
 gonna de-rice but I think I can make a use case for blur

---
 .config/compton.conf | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.config/compton.conf b/.config/compton.conf
index 6cf2dda2..cf8606d7 100644
--- a/.config/compton.conf
+++ b/.config/compton.conf
@@ -125,15 +125,16 @@ alpha-step = 0.06;
 # Do not let dimness adjust based on window opacity.
 # inactive-dim-fixed = true;
 # Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
-blur-background = false;
+blur-background = true;
 blur-kern = "7x7box";
 # Blur background of opaque windows with transparent frames as well.
 blur-background-frame = false;
 # Do not let blur radius adjust based on window opacity.
-blur-background-fixed = false;
+blur-background-fixed = true;
 blur-background-exclude = [
+    "class_g ?= 'xfdesktop'",
     "window_type = 'dock'",
-    "window_type = 'desktop'",
+#   "window_type = 'desktop'",
     "class_g ?= 'Wine'"
 ];