dotfiles/x/compton_default.conf

21 lines
605 B
Plaintext
Raw Normal View History

2016-09-17 15:09:53 +02:00
# compton (https://github.com/chjj/compton) compositor config
# Latest git master version of compton is recommended. Configuring compton is
# tricky, these settings are what work for me with NVIDIA GeForce GTX 650 Ti,
# and the nvidia-352 driver.
# Use GLX backend for performance and vsync:
backend = "glx"
# Various performance optimizations:
paint-on-overlay = true;
glx-no-stencil = true;
glx-no-rebind-pixmap = true;
2016-09-19 00:08:01 +02:00
glx-swap-method = -1;
2016-09-17 15:09:53 +02:00
# With newer NVIDIA drivers, this option is needed to prevent lags/flickering:
xrender-sync-fence = true;
2016-09-17 15:09:53 +02:00
unredir-if-possible = true;
2016-09-19 00:08:01 +02:00
vsync = "opengl-oml";