Posts Fix Video Tearing in Gnome With Intel iGPU
Post
Cancel

Fix Video Tearing in Gnome With Intel iGPU

Edit /etc/X11/xorg.conf.d/20-intel.conf

1
$ vim /etc/X11/xorg.conf.d/20-intel.conf

Set the tear free option:

1
2
3
4
5
6
Section "OutputClass"
  Identifier "Intel Graphics"
  MatchDriver "i915"
  Driver "intel"
  Option "TearFree" "true"  # This line does the trick
EndSection

Reference: https://wiki.archlinux.org/index.php/Intel_graphics

This post is licensed under CC BY 4.0 by the author.