Skip to content

Instantly share code, notes, and snippets.

@raghunayak
Created May 6, 2021 15:02
Show Gist options
  • Save raghunayak/39b85f139c9171eec29f29e2881cd53c to your computer and use it in GitHub Desktop.
Save raghunayak/39b85f139c9171eec29f29e2881cd53c to your computer and use it in GitHub Desktop.
Creates Xorg.conf template file for intel integrated GPU
# 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