7 lines
222 B
Bash
7 lines
222 B
Bash
#!/bin/bash
|
|
# Apply Intel "Tear Free" driver fix
|
|
mkdir -p /etc/X11/xorg.conf.d
|
|
echo "Section \"Device\"
|
|
Identifier \"Intel Graphics\"
|
|
Option \"TearFree\" \"true\"
|
|
EndSection" > /etc/X11/xorg.conf.d/20-intel.conf |