Advertisement
Guest User

xorg edited

a guest
May 3rd, 2012
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerLayout"
  2.     Identifier     "X.org Configured"
  3.     Screen      0  "Screen0" 0 0
  4.     Screen      1  "Screen1" RightOf "Screen0"
  5.     Screen      2  "Screen2" RightOf "Screen1"
  6.     InputDevice    "Mouse0" "CorePointer"
  7.     InputDevice    "Keyboard0" "CoreKeyboard"
  8. EndSection
  9.  
  10. Section "Files"
  11.     ModulePath   "/usr/X11R6/lib/modules"
  12.     FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
  13.     FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
  14.     FontPath     "/usr/X11R6/lib/X11/fonts/OTF/"
  15.     FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
  16.     FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
  17.     FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
  18. EndSection
  19.  
  20. Section "Module"
  21.     Load  "dbe"
  22.     Load  "dri"
  23.     Load  "dri2"
  24.     Load  "extmod"
  25.     Load  "glx"
  26.     Load  "record"
  27. EndSection
  28.  
  29. Section "InputDevice"
  30.     Identifier  "Keyboard0"
  31.     Driver      "kbd"
  32. EndSection
  33.  
  34. Section "InputDevice"
  35.     Identifier  "Mouse0"
  36.     Driver      "mouse"
  37.     Option      "Protocol" "wsmouse"
  38.     Option      "Device" "/dev/wsmouse"
  39.     Option      "ZAxisMapping" "4 5 6 7"
  40. EndSection
  41.  
  42. Section "Monitor"
  43.     Identifier   "Monitor0"
  44.     VendorName   "Monitor Vendor"
  45.     ModelName    "Monitor Model"
  46. EndSection
  47.  
  48. Section "Device"
  49.         ### Available Driver options are:-
  50.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  51.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  52.         ### <percent>: "<f>%"
  53.         ### [arg]: arg optional
  54.         #Option     "NoAccel"               # [<bool>]
  55.         #Option     "AccelMethod"           # [<str>]
  56.         #Option     "offscreensize"         # [<str>]
  57.         #Option     "SWcursor"              # [<bool>]
  58.         #Option     "ignoreconnector"       # [<str>]
  59.         #Option     "forcereduced"          # [<bool>]
  60.         #Option     "forcedpi"              # <i>
  61.         #Option     "useconfiguredmonitor"  # [<bool>]
  62.         #Option     "HPD"                   # <str>
  63.         #Option     "NoRandr"               # [<bool>]
  64.         #Option     "RROutputOrder"         # [<str>]
  65.         #Option     "DRI"                   # [<bool>]
  66.         #Option     "TVMode"                # [<str>]
  67.         #Option     "ScaleType"             # [<str>]
  68.         #Option     "UseAtomBIOS"           # [<bool>]
  69.         #Option     "AtomBIOS"              # [<str>]
  70.         #Option     "UnverifiedFeatures"    # [<bool>]
  71.         #Option     "Audio"                 # [<bool>]
  72.         #Option     "AudioStreamSilence"    # [<str>]
  73.         #Option     "HDMI"                  # [<str>]
  74.         #Option     "COHERENT"              # [<str>]
  75.         #Option     "ForceLowPowerMode"     # [<bool>]
  76.         #Option     "LowPowerModeEngineClock"   # <i>
  77.     Identifier  "Card0"
  78.     Driver      "radeon"
  79.     BusID       "PCI:1:5:0"
  80. EndSection
  81.  
  82. #Section "Device"
  83.         ### Available Driver options are:-
  84.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  85.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  86.         ### <percent>: "<f>%"
  87.         ### [arg]: arg optional
  88.         #Option     "ShadowFB"              # [<bool>]
  89.         #Option     "DefaultRefresh"        # [<bool>]
  90.         #Option     "ModeSetClearScreen"    # [<bool>]
  91.     #Identifier  "Card1"
  92.     #Driver      "vesa"
  93.     #BusID       "PCI:1:5:0"
  94. #EndSection
  95.  
  96. Section "Screen"
  97.     Identifier "Screen0"
  98.     Device     "Card0"
  99.     Monitor    "Monitor0"
  100.     SubSection "Display"
  101.         Viewport   0 0
  102.         Depth     1
  103.     EndSubSection
  104.     SubSection "Display"
  105.         Viewport   0 0
  106.         Depth     4
  107.     EndSubSection
  108.     SubSection "Display"
  109.         Viewport   0 0
  110.         Depth     8
  111.     EndSubSection
  112.     SubSection "Display"
  113.         Viewport   0 0
  114.         Depth     15
  115.     EndSubSection
  116.     SubSection "Display"
  117.         Viewport   0 0
  118.         Depth     16
  119.     EndSubSection
  120.     SubSection "Display"
  121.         Viewport   0 0
  122.         Depth     24
  123.     EndSubSection
  124. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement