diff options
Diffstat (limited to '.config/picom')
-rw-r--r-- | .config/picom/picom.conf | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 9bf7a446..3d9f2c93 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -209,11 +209,13 @@ blur-background-exclude = [ # Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`. # `xrender` is the default one. # -# backend = 'glx' -backend = "xrender"; +# I need glx + vsync to fix tearing +backend = "glx"; +#backend = "xrender"; # Enable/disable VSync. # vsync = false +# I need glx + vsync to fix tearing vsync = true # Enable remote control via D-Bus. See the *D-BUS API* section below for more details. |