1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-07-09 09:17:46 +02:00
wiki/system-software/intel-graphics.md
2020-06-12 23:15:17 +02:00

16 lines
390 B
Markdown

# Intel Graphics
## Screen Tearing
Linux can sometimes have problems with screen tearing.
To get this working you need to change the `/etc/X11/xorg.conf.d/20-intel.conf` to:
```
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "TearFree" "true"
EndSection
```
This was found on [maketecheasier](https://www.maketecheasier.com/get-rid-screen-tearing-linux).