[Debian-eeepc-devel] xorg.conf

obregonmateo at gmail.com obregonmateo at gmail.com
Thu Sep 18 15:00:13 UTC 2008


On Thursday 18 September 2008, bruno Caillier wrote:
> is someone kind to post a valid xorg.conf for dual display on eeepc 900

It takes a few changes:

1. In /etc/default/eeepc-acpi-scripts, modify the COMBINED_DISPLAY_SWITCHES 
variable.

# these are the switches for xrandr --output VGA when Fn-F5 is used to
# select LCD+VGA mode
COMBINED_DISPLAY_SWITCHES='--output LVDS --below VGA'

2. In /etc/X11/xorg.conf, two screens have to be defined (with their 
corresponding display and device sections), with max virtual resolution. I 
have found that what works best for me is having the small eeepc display 
below my big screen. This makes the small eeepx screen a continuation of the 
large top screen and I can have windows display across both as in xinerama 
mode of the old X display drivers. This way I can simply [Fn][F5] to get 
everything on the eeepc screen or displayed across both.

Section "Device"
        Identifier      "Configured Video Device 0"
        Driver          "intel"
        BusID           "PCI:0:2:0"
        Option          "UseFBDev"              "true"
        Screen          0
EndSection

Section "Device"
        Identifier      "Configured Video Device 1"
        Screen          1
EndSection

Section "Monitor"
        Identifier      "LVDS"
        Option          "Below" "VGA"
EndSection

Section "Monitor"
        Identifier      "VGA"
EndSection

ection "Screen"
        Identifier      "LVDS Screen"
        Monitor         "LVDS"
        Device          "Configured Video Device 0"
        DefaultDepth    24
        Subsection "Display"
                Depth   24
                Virtual 2048 2048
        EndSubSection
EndSection

Section "Screen"
        Identifier      "VGA Screen"
        Monitor         "VGA"
        Device          "Configured Video Device 1"
        DefaultDepth    24
        Subsection "Display"
                Depth   24
                Virtual 2048 2048
        EndSubSection
EndSection




More information about the Debian-eeepc-devel mailing list