# Modification of the default Slackware xorg.conf file. 11-09-2005 # ********************************************************************** # Module section -- this section is used to specify # which dynamically loadable modules to load. # ********************************************************************** Section "Module" Load "synaptics" # This loads the touchpad module. Load "dbe" # Double buffer extension. SubSection "extmod" Option "omit xfree86-dga" # Disables initialisation of the XFree86-DGA extension. EndSubSection Load "type1" # This loads Load "freetype" # the font modules. Load "glx" # This loads the GLX module. EndSection # ********************************************************************** # Files section. This allows default font and rgb paths to be set # ********************************************************************** Section "Files" RgbPath "/usr/X11R6/lib/X11/rgb" # The location of the RGB database. FontPath "/usr/X11R6/lib/X11/fonts/local/" FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled" FontPath "/usr/X11R6/lib/X11/fonts/Type1/" FontPath "/usr/X11R6/lib/X11/fonts/CID/" FontPath "/usr/X11R6/lib/X11/fonts/Speedo/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" FontPath "/usr/X11R6/lib/X11/fonts/cyrillic/" EndSection # ********************************************************************** # Input devices # ********************************************************************** # ********************************************************************** # Core keyboard's InputDevice section # ********************************************************************** Section "InputDevice" Identifier "Keyboard1" Driver "kbd" Option "XkbLayout" "uk" EndSection # ********************************************************************** # Core Pointer's InputDevice section # ********************************************************************** Section "InputDevice" # Normal mouse and AccuPoint. Identifier "Mouse1" Driver "mouse" Option "Protocol" "Auto" Option "Device" "/dev/mouse" Option "ZAxisMapping" "4 5" # Scrolling for my USB mouse. EndSection Section "InputDevice" # Touchpad Identifier "Mouse2" Driver "synaptics" Option "Device" "/dev/input/event2" Option "Protocol" "auto-dev" Option "LeftEdge" "120" Option "RightEdge" "830" Option "TopEdge" "120" Option "BottomEdge" "650" Option "FingerLow" "14" Option "FingerHigh" "15" Option "MaxTapTime" "180" Option "MaxTapMove" "110" Option "EmulateMidButtonTime" "75" Option "VertScrollDelta" "20" Option "HorizScrollDelta" "20" Option "MinSpeed" "0.3" Option "MaxSpeed" "0.75" Option "AccelFactor" "0.015" Option "EdgeMotionMinSpeed" "200" Option "EdgeMotionMaxSpeed" "200" Option "UpDownScrolling" "1" Option "CircularScrolling" "1" Option "CircScrollDelta" "0.1" Option "CircScrollTrigger" "2" EndSection # ********************************************************************** # Monitor section # ********************************************************************** Section "Monitor" Identifier "LCD" HorizSync 28-75 # 31.5-50.0 VertRefresh 43-75 # 40-90 EndSection # ********************************************************************** # Graphics device section # ********************************************************************** Section "Device" Identifier "NVidia GeForce FX Go 5200" Driver "nvidia" Option "NoLogo" EndSection # ********************************************************************** # Screen sections # ********************************************************************** Section "Screen" Identifier "Screen1" Device "NVidia GeForce FX Go 5200" Monitor "LCD" # DefaultDepth 8 # DefaultDepth 16 DefaultDepth 24 # DefaultDepth 32 Subsection "Display" Depth 8 Modes "1024x768" "800x600" "640x480" EndSubsection Subsection "Display" Depth 16 Modes "1024x768" "800x600" "640x480" EndSubsection Subsection "Display" Depth 24 Modes "1024x768" "800x600" "640x480" EndSubsection Subsection "Display" Depth 32 Modes "1024x768" "800x600" "640x480" EndSubsection EndSection # ********************************************************************** # ServerLayout sections. # ********************************************************************** Section "ServerLayout" Identifier "Simple Layout" Screen "Screen1" InputDevice "Mouse1" "CorePointer" InputDevice "Mouse2" "AlwaysCore" InputDevice "Keyboard1" "CoreKeyboard" EndSection