Skip to content

Instantly share code, notes, and snippets.

@fredcamps
Last active June 21, 2016 16:31
Show Gist options
  • Save fredcamps/feb319755b7deb9e797a to your computer and use it in GitHub Desktop.
Save fredcamps/feb319755b7deb9e797a to your computer and use it in GitHub Desktop.
/etc/X11/xorg.conf Dual Heads Examples
Section "Monitor"
Identifier "DVI"
VendorName "DELL"
EndSection
Section "Monitor"
Identifier "VGA"
VendorName "DELL"
Option "RightOf" "DVI-0"
EndSection
Section "Device"
Identifier "Device0"
Driver "radeon"
VendorName "AMD ATI"
BoardName "HD"
Option "Monitor-DVI-0" "DVI"
Option "Monitor-VGA-0" "VGA"
Option "AccelMethod" "EXA"
#Option "VGAAccess" "on"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "Monitor"
Identifier "VGA"
Option "PreferredMode" "1920x1080"
Option "Primary" "true"
EndSection
Section "Monitor"
Identifier "LVDS"
Option "PreferredMode" "1366x768"
Option "LeftOf" "VGA"
EndSection
Section "Device"
Identifier "Intel"
Driver "intel"
Option "dri" "true"
Option "AccelMethod" "sna"
Option "Monitor-VGA" "VGA"
Option "Monitor-LVDS" "LVDS"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Intel"
Monitor "VGA"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment