Eric Radman : a Journal

Xorg Configuration for IBM T30

xorg.conf

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0"
    Screen      1  "Screen1"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Cursor" "SendCoreEvents"
    InputDevice    "Stylus" "SendCoreEvents"
    InputDevice    "Eraser" "SendCoreEvents"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/X11R6/lib/modules"
    FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
    FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    FontPath     "/usr/local/lib/X11/fonts/ghostscript/"
    FontPath     "/usr/local/lib/X11/fonts/terminus/"
EndSection

Section "Module"
    Load  "dbe"
    Load  "extmod"
    Load  "glx"
    Load  "record"
    Load  "xtrap"
    Load  "freetype"
    Load  "type1"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option    "Protocol" "wsmouse"
    Option    "Device" "/dev/wsmouse"
    Option    "ZAxisMapping" "4 5 6 7"
EndSection

Section "InputDevice"
  Driver    "wacom"
  Identifier    "Cursor"
  Option    "Device"    "/dev/tty00"
  Option    "Type"      "cursor"
  Option     "Mode"      "relative"
  Option     "USB"       "off"
  Option     "Tilt"      "on"
EndSection

Section "InputDevice"
  Driver    "wacom"
  Identifier    "Stylus"
  Option    "Device"    "/dev/tty00"
  Option    "Type"      "stylus"
  Option     "Mode"      "absolute"
  Option     "USB"       "off"
  Option     "Tilt"      "on"
EndSection

Section "InputDevice"
  Driver    "wacom"
  Identifier    "Eraser"
  Option    "Device"    "/dev/tty00"
  Option    "Type"      "eraser"
  Option     "Mode"      "absolute"
  Option     "USB"       "off"
  Option     "Tilt"      "on"
EndSection

Section "Monitor"
    Identifier      "Monitor0"
    Option       "DPMS" "true"
EndSection

Section "Monitor"
    Identifier      "Monitor1"
    Option       "DPMS" "true"
EndSection

Section "Device"
    Identifier   "Video0"
    Driver       "ati"
    VendorName   "ATI Technologies Inc"
    BoardName    "Radeon Mobility M7 LW [Radeon Mobility 7500]"
    BusID        "PCI:1:0:0"
    Option       "AGPMode" "4"
EndSection

Section "Device"
    Identifier   "Video1"
    Driver       "ati"
    VendorName   "ATI Technologies Inc"
    BoardName    "Radeon Mobility M7 LW [Radeon Mobility 7500]"
    BusID        "PCI:1:0:0"
    Option       "AGPMode" "4"
    Screen 1
EndSection

Section "ServerFlags"
Option "blank time" "20"
Option "standby time" "40"
Option "suspend time" "50"
Option "off time" "60"
EndSection

Section "Screen"
    Identifier   "Screen0"
    Device       "Video0"
    Monitor      "Monitor0"
    DefaultDepth 24
    SubSection "Display"
        Depth  16
        Modes   "1680x1050" "1400x1050"
        Virtual 1680 1050
    EndSubSection
    SubSection "Display"
        Depth  24
        Modes  "1680x1050" "1400x1050"
        Virtual 1680 1050
    EndSubSection
EndSection

Section "Screen"
    Identifier   "Screen1"
    Device       "Video1"
    Monitor      "Monitor1"
    DefaultDepth 24
    SubSection "Display"
        Depth  16
        Modes  "1680x1050"
    EndSubSection
    SubSection "Display"
        Depth  24
        Modes  "1680x1050"
    EndSubSection
EndSection

$ Wed Aug 04 07:12:04 -0500 2010 $