diff options
-rw-r--r-- | .config/picom.conf | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.config/picom.conf b/.config/picom.conf index b1510ac..559cb51 100644 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -162,6 +162,10 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ]; # Background-Blurring # ################################# +blur: { + method = "dual_kawase"; + strength = 4; +} # Parameters for background blurring, see the *BLUR* section for more information. # blur-method = @@ -173,7 +177,7 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ]; # Bad in performance, with driver-dependent behavior. # The name of the switch may change without prior notifications. # -blur-background = false +blur-background = true # Blur background of windows when the window frame is not opaque. # Implies: @@ -192,7 +196,7 @@ blur-background = false # blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1"; # # blur-kern = '' -blur-kern = "3x3box"; +#blur-kern = "3x3box"; # Exclude conditions for background blur. @@ -213,8 +217,8 @@ blur-background-exclude = [ # Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`. # `xrender` is the default one. # -# backend = 'glx' -backend = "xrender"; +backend = "glx"; +# backend = "xrender"; # Enable/disable VSync. # vsync = false |