diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-29 13:13:03 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-29 13:13:03 +0530 |
commit | de40e0c48892bc2a5a9dcee3cd041e9186f61af2 (patch) | |
tree | c1bba1d271c48367f91a3003885c6df12405edab /.config | |
parent | bce45b39cffd18672db6a50008e7e463b21c7c6b (diff) |
added blurring
Diffstat (limited to '.config')
-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 |