# xorg.conf for Acer Travelmate 3000 (3004WTMi) and Ubuntu 6.06 LTS Dapper # http://www.iki.fi/karvinen/acer_travelmate_3004wtmi_with_linux.html # - External projector works (vga 1024x768) # - Widescreen 1280x800 works with 915resolution # - Suspend-to-ram s3 works with settings to /etc/default/acpi-support # 2006-11-07 Added 1024x768 for external vga projector. Published. # 2006-08-03 External monitor has sharp image. # 2006-06-13 Synaptics touchpad and scroll button work. Disabled dead keys. # 2006-06-12 Cleanup # 2006-06-10 Published full xorg.conf # 2006-06-09 Suspend-to-ram s3 works (VBERestore) # (c) GPL 2006 Tero Karvinen www.iki.fi/karvinen # GNU General Public License, version 2 or later Section "Files" FontPath "/usr/share/X11/fonts/misc" FontPath "/usr/share/X11/fonts/cyrillic" FontPath "/usr/share/X11/fonts/100dpi/:unscaled" FontPath "/usr/share/X11/fonts/75dpi/:unscaled" FontPath "/usr/share/X11/fonts/Type1" FontPath "/usr/share/X11/fonts/100dpi" FontPath "/usr/share/X11/fonts/75dpi" # path to defoma fonts FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" EndSection Section "Module" Load "i2c" Load "bitmap" Load "ddc" Load "dri" Load "extmod" Load "freetype" Load "glx" Load "int10" Load "type1" Load "vbe" EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "fi" Option "XkbVariant" "nodeadkeys" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol" "ExplorerPS/2" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "true" EndSection Section "InputDevice" Identifier "Synaptics Touchpad" # from 'sudo dpkg-reconfigure xserver-xorg' Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "HorizScrollDelta" "0" EndSection Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/wacom" # Change to # /dev/input/event # for USB Option "Type" "stylus" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/wacom" # Change to # /dev/input/event # for USB Option "Type" "eraser" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/wacom" # Change to # /dev/input/event # for USB Option "Type" "cursor" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "Device" Identifier "i915" Driver "i810" BusID "PCI:0:2:0" Option "VBERestore" "true" Option "MonitorLayout" "CRT,LFP" Option "Clone" "true" EndSection Section "Device" Identifier "i915external" Driver "i810" BusID "PCI:0:2:0" Screen 1 Option "VBERestore" "true" EndSection Section "Monitor" Identifier "builtin" Option "DPMS" HorizSync 28-64 VertRefresh 43-60 # DisplaySize width height # mm, to calculate dpi EndSection Section "Monitor" Identifier "externalmon" Option "DPMS" # xorg uses ddcprobe to find resolution and refresh rate EndSection Section "Screen" Identifier "internal" Device "i915" Monitor "builtin" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 # Widescreen 1280x800x24bit needs 915resolution (5a 1280 800) # 1024x768 was added for external projector in clone mode Modes "1280x800" "1024x768" EndSubSection EndSection Section "Screen" Identifier "external" Device "i915" Monitor "externalmon" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1024x768" # To use external projector in clone mode: 'xrandr -s 1024x768' # To use internal TFT with correct resolution: 'xrandr -s 1280x800' # Modes "1280x1024" "1024x768" "800x600" EndSubSection EndSection Section "ServerLayout" Identifier "Default Layout" Screen "internal" Screen "external" InputDevice "Generic Keyboard" InputDevice "Configured Mouse" InputDevice "Synaptics Touchpad" InputDevice "stylus" "SendCoreEvents" InputDevice "cursor" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" EndSection Section "DRI" Mode 0666 EndSection # http://www.iki.fi/karvinen/acer_travelmate_3004wtmi_with_linux.html