Skip to content

Instantly share code, notes, and snippets.

@markus-willems
Created January 3, 2019 19:35
Show Gist options
  • Save markus-willems/6ea13bfc19ab7e4632aa3b693d29cad8 to your computer and use it in GitHub Desktop.
Save markus-willems/6ea13bfc19ab7e4632aa3b693d29cad8 to your computer and use it in GitHub Desktop.
Getting rid of tearing in Xubuntu 18.04.1 (Intel graphics)

Getting rid of tearing in Xubuntu 18.04.1 (Intel graphics)

  1. Enter sudo touch /usr/share/X11/xorg.conf.d/20-intel.conf (if it doesn't already exist)
  2. Append the following snippet:
Section "Device"
   Identifier  "Intel Graphics"
   Driver      "intel"
   Option "AccelMethod" "sna"
   Option "DRI" "3"
   Option "TearFree" "true"
EndSection
  1. Reboot or Log out and in
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment