Thank you so much! That was really helpful. The most useful link was the one from the intel linux website:
http://intellinuxgraphics.org/dualhead.html
I am attaching my xorg.conf file for the following setup: Laptop Lenovo Thinkpad T61 with 1440x900 resolution internal LCD display and external Lenovo L201p LCD monitor with 1600x1200 max. resolution. I have a dual monitor (/ dual head) setup where the external monitor is to the left of my laptop.
Code:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection
Section "Device"
Identifier "Intel 945G "
Driver "intel"
Option "monitor-LVDS" "monLVDS"
Option "monitor-VGA" "monVGA"
EndSection
Section "Monitor"
Identifier "monLVDS"
Option "PreferredMode" "1440x900"
Option "Position" "0 0"
EndSection
Section "Monitor"
Identifier "monVGA"
Option "PreferredMode" "1600x1200"
Option "LeftOf" "monLVDS"
Option "Position" "-1600 -300"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation 945G Integrated Graphics Controller"
Monitor "monLVDS"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1440x900"
Virtual 3040 1200
EndSubSection
EndSection
Bookmarks