Last active
November 14, 2024 00:30
-
-
Save k-lazarevv/8a82b61ebf6101173bf211b415890753 to your computer and use it in GitHub Desktop.
Getting rid from screen tearing (Xfce on Intel Graphics)
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
# /etc/X11/xorg.conf.d/20-intel.conf | |
Section "Device" | |
Identifier "Intel Graphics" | |
Driver "intel" | |
Option "AccelMethod" "sna" | |
Option "DRI" "3" | |
Option "TearFree" "true" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This seems to fix it for me too! Thank you! I tried various approaches and yours somehow worked. How did you come up with this solution? Where can I find such informations the next time I have a graphics issue?