Created
June 15, 2021 16:37
-
-
Save ikolomiko/c96980acb6a1d572fd9ba1d8ef3a5148 to your computer and use it in GitHub Desktop.
Intel HD Graphics screen tearing fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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!