# # 07/06/2006: Greg's Lifebook P7120 X.org configuration file (NetBSD) # 07/10/2006: Emmanuel's adapting to Debian unstable # Filename: /etc/X11/xorg.conf # # ********************************************************************** # Files section. This allows default font and rgb paths to be set. # ********************************************************************** Section "Files" FontPath "unix/:7100" # local font server FontPath "/usr/share/fonts/X11/misc" FontPath "/usr/share/fonts/X11/cyrillic" FontPath "/usr/share/fonts/X11/100dpi/:unscaled" FontPath "/usr/share/fonts/X11/75dpi/:unscaled" FontPath "/usr/share/fonts/X11/Type1" FontPath "/usr/share/fonts/X11/100dpi" FontPath "/usr/share/fonts/X11/75dpi" EndSection # ********************************************************************** # Module section -- this is an optional section which is used to specify # which run-time loadable modules to load when the X server starts up. # ********************************************************************** Section "Module" Load "ddc" Load "dri" Load "glx" Load "extmod" Load "v4l" Load "dbe" Load "synaptics" # Fonts modules Load "freetype" Load "type1" EndSection # ********************************************************************** # Server flags section. This contains various server-wide Options. # ********************************************************************** Section "ServerFlags" Option "AllowMouseOpenFail" Option "BlankTime" "5" # 5 minutes Option "StandbyTime" "10" # 10 minutes Option "SuspendTime" "20" # 20 minutes Option "OffTime" "30" # 30 minutes # Option "Xinerama" "true" EndSection # ********************************************************************** # Input devices. # ********************************************************************** # ********************************************************************** # Core keyboard's InputDevice section. # ********************************************************************** Section "InputDevice" Identifier "Laptop Keyboard" Driver "keyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "us" Option "AutoRepeat" "250 30" EndSection # ********************************************************************** # Core Pointer's InputDevice section. # ********************************************************************** Section "InputDevice" Identifier "Laptop Touchpad" Driver "synaptics" Option "Protocol" "event" Option "Device" "/dev/input/event1" # Settings for the Synaptics pad Option "LeftEdge" "1700" Option "RightEdge" "5300" Option "TopEdge" "1700" Option "BottomEdge" "4200" Option "FingerLow" "25" Option "FingerHigh" "30" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "EmulateMidButtonTime" "75" Option "VertScrollDelta" "100" Option "HorizScrollDelta" "100" Option "MinSpeed" "0.10" Option "MaxSpeed" "0.20" Option "AccelFactor" "0.05" Option "EdgeMotionMinSpeed" "200" Option "EdgeMotionMaxSpeed" "200" Option "UpDownScrolling" "1" Option "CircularScrolling" "1" Option "CircScrollDelta" "0.1" Option "CircScrollTrigger" "2" Option "SHMConfig" "On" Option "Emulate3Buttons" "On" EndSection Section "InputDevice" Identifier "USB Mouse" Driver "mouse" Option "Protocol" "imps/2" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5" EndSection # ********************************************************************** # Monitor section. # ********************************************************************** Section "Monitor" Identifier "Laptop LCD" Option "DDC" "true" # We specify default (from spec) values for HorizSync and VertRefresh # in case DDC is disabled or not supported HorizSync 35.0 - 48.4 VertRefresh 60.0 - 61.0 DisplaySize 230 138 # mm Option "DPMS" # We specify modelines for all the modes that we use on this monitor # in case DDC detects incorrect values for HorizSync and VertRefresh # 800x600 @ 60 Hz (VESA) Modeline "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync # 1024x768 @ 60 Hz (VESA) Modeline "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync # 1280x768 @ 60 Hz (CVT) Modeline "1280x768" 79.50 1280 1344 1472 1664 768 771 778 798 -hsync +vsync EndSection Section "Monitor" Identifier "External Monitor" Option "DDC" "true" # We specify default (reasonable) values for HorizSync and VertRefresh # in case DDC is disabled or not supported HorizSync 30.0 - 60.0 VertRefresh 50.0 - 75.0 Option "DPMS" EndSection # ********************************************************************** # Graphics device section. # ********************************************************************** Section "Device" Identifier "Graphics Controller - Primary" Driver "i810" VendorName "Intel Corporation" BoardName "Mobile 915GM/GMS/910GML Express Graphics Controller" BusID "PCI:0:2:0" Screen 0 EndSection Section "Device" Identifier "Graphics Controller - Secondary" Driver "i810" VendorName "Intel Corporation" BoardName "Mobile 915GM/GMS/910GML Express Graphics Controller" BusID "PCI:0:2:0" Screen 1 EndSection # ********************************************************************** # Screen sections. # ********************************************************************** Section "Screen" Identifier "Laptop LCD - Single" Device "Graphics Controller - Primary" Monitor "Laptop LCD" DefaultDepth 24 SubSection "Display" Modes "1280x768" "1024x768" "800x600" ViewPort 0 0 EndSubSection EndSection Section "Screen" Identifier "Laptop LCD - Dual" Device "Graphics Controller - Primary" Option "MonitorLayout" "LFP,CRT" Monitor "Laptop LCD" DefaultDepth 24 SubSection "Display" Modes "1280x768" "1024x768" "800x600" ViewPort 0 0 EndSubSection EndSection Section "Screen" Identifier "External Monitor - Single" Device "Graphics Controller - Primary" Option "MonitorLayout" "CRT" Monitor "External Monitor" DefaultDepth 24 SubSection "Display" Modes "1280x1024" "1024x768" "800x600" ViewPort 0 0 EndSubSection EndSection Section "Screen" Identifier "External Monitor - Dual" Device "Graphics Controller - Secondary" Monitor "External Monitor" DefaultDepth 24 SubSection "Display" Modes "1280x1024" "1024x768" "800x600" ViewPort 0 0 EndSubSection EndSection # ********************************************************************** # ServerLayout sections. # ********************************************************************** Section "ServerLayout" Identifier "single" Screen "Laptop LCD - Single" InputDevice "Laptop Keyboard" "CoreKeyboard" InputDevice "Laptop Touchpad" "AlwaysCore" InputDevice "USB Mouse" "CorePointer" EndSection Section "ServerLayout" Identifier "external" Screen "External Monitor - Single" InputDevice "Laptop Keyboard" "CoreKeyboard" InputDevice "Laptop Touchpad" "AlwaysCore" InputDevice "USB Mouse" "CorePointer" EndSection Section "ServerLayout" Identifier "dual" Screen "Laptop LCD - Dual" Screen "External Monitor - Dual" Above "Laptop LCD - Dual" InputDevice "Laptop Keyboard" "CoreKeyboard" InputDevice "Laptop Touchpad" "AlwaysCore" InputDevice "USB Mouse" "CorePointer" # Uncomment if you want to drag a Window from one screen to another # Option "Xinerama" "true" EndSection Section "DRI" Group 0 Mode 0666 EndSection