Skip to content

Instantly share code, notes, and snippets.

@ikolomiko
Created June 15, 2021 16:37
Show Gist options
  • Select an option

  • Save ikolomiko/c96980acb6a1d572fd9ba1d8ef3a5148 to your computer and use it in GitHub Desktop.

Select an option

Save ikolomiko/c96980acb6a1d572fd9ba1d8ef3a5148 to your computer and use it in GitHub Desktop.
Intel HD Graphics screen tearing fix
# File location: /etc/X11/xorg.conf.d/20-intel-graphics.conf
Section "Module"
Load "dri3"
EndSection
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
# Change "3" to "false" on the line below if it doesn't work
Option "DRI" "3"
Option "TripleBuffer" "true"
Option "TearFree" "true"
EndSection
@ikolomiko

Copy link
Copy Markdown
Author

This config stopped working for me for some reason. So I deleted this file and started using this config instead. Now both Nvidia and Intel GPUs work perfectly!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment