My Xorg.conf file


My xorg.conf file

Return to How To Install Debian On A USB Key For A MacBookPro

Contents of my /etc/X11/xorg.conf file:

Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Synaptics Touchpad" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/etc/X11/rgb"
        ModulePath   "/usr/lib/xorg/modules"
        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"
        FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "InputDevice"
  Identifier      "Synaptics Touchpad"
  Driver          "synaptics"
  Option          "SendCoreEvents"        "true"
  Option          "Device"                "/dev/psaux"
  Option          "Protocol"              "auto-dev"
  Option          "SHMConfig"             "true"
  Option          "New AccelFactor"       "0.03"
  Option          "LeftEdge"              "100"
  Option          "RightEdge"             "1120"
  Option          "TopEdge"               "50"
  Option          "BottomEdge"            "310"
  Option          "FingerHigh"            "30"
  Option          "MinSpeed"              "0.94"
  Option          "MaxSpeed"              "1"
  Option          "AccelFactor"           "0.0015"
  Option          "FingerLow"             "20"
  Option          "HorizScrollDelta"      "0"
  Option          "MaxTapTime"            "150"
  Option          "TapButton1"            "3"
  Option          "TapButton3"            "0"
  Option          "VertEdgeScroll"        "1"
  Option          "HorizEdgeScroll"       "1"
  Option          "VertScrollDelta"       "5"
  Option          "VertTwoFingerScroll"   "0"
  Option          "HorizTwoFingerScroll"  "0"
EndSection

Section "Module"
        Load  "GLcore"
        Load  "extmod"
        Load  "glx"
        Load  "dri"
        Load  "xtrap"
        Load  "record"
        Load  "dbe"
        Load "synaptics"
EndSection

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

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

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"       "True"      # [<bool>]
        #Option     "AccelMethod"               # [<str>]
        #Option     "offscreensize"             # [<str>]
        #Option     "SWcursor"                  # [<bool>]
        #Option     "ignoreconnector"           # [<str>]
        #Option     "forcereduced"              # [<bool>]
        #Option     "forcedpi"                  # <i>
        #Option     "useconfiguredmonitor"      # [<bool>]
        #Option     "HPD"                       # <str>
        #Option     "NoRandr" "True"            # [<bool>]
        #Option     "RRUseXF86Edid"             # [<bool>]
        #Option     "RROutputOrder"             # [<str>]
        #Option     "TVMode"                    # [<str>]
        Identifier  "Card0"
        Driver      "fbdev"
        VendorName  "ATI Technologies Inc"
        BoardName   "M56P [Radeon Mobility X1600]"
        BusID       "PCI:1:0:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth 24
        SubSection "Display"
                Viewport   0 0
                Depth     1
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     4
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     8
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     15
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
        EndSubSection
        SubSection "Display"
                Viewport  1600 1600 
                Depth     24
        EndSubSection
EndSection