Created
May 6, 2021 15:02
-
-
Save raghunayak/39b85f139c9171eec29f29e2881cd53c to your computer and use it in GitHub Desktop.
Creates Xorg.conf template file for intel integrated GPU
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
# Create the Xorg.conf template file for intel integrated GPU | |
cat <<EOF | sudo tee /usr/share/X11/xorg.conf.d/20-intel.conf &>/dev/null | |
Section "Device" | |
Identifier "intelgpu0" | |
Option "NoDDC" "true" | |
Option "IgnoreEDID" "true" | |
Driver "intel" | |
EndSection | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment