Advertisement
Guest User

xorg.conf

a guest
May 18th, 2012
371
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/lib/xorg/modules"
  12.     FontPath     "/usr/share/fonts/X11/misc"
  13.     FontPath     "/usr/share/fonts/X11/cyrillic"
  14.     FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  15.     FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  16.     FontPath     "/usr/share/fonts/X11/Type1"
  17.     FontPath     "/usr/share/fonts/X11/100dpi"
  18.     FontPath     "/usr/share/fonts/X11/75dpi"
  19.     FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  20.     FontPath     "built-ins"
  21. EndSection
  22.  
  23. Section "Module"
  24.     Load  "record"
  25.     Load  "dri2"
  26.     Load  "dri"
  27.     Load  "glx"
  28.     Load  "extmod"
  29.     Load  "dbe"
  30. EndSection
  31.  
  32. Section "InputDevice"
  33.     Identifier  "Keyboard0"
  34.     Driver      "kbd"
  35. EndSection
  36.  
  37. Section "InputDevice"
  38.     Identifier  "Mouse0"
  39.     Driver      "mouse"
  40.     Option      "Protocol" "auto"
  41.     Option      "Device" "/dev/input/mice"
  42.     Option      "ZAxisMapping" "4 5 6 7"
  43. EndSection
  44.  
  45. Section "Monitor"
  46.     Identifier   "Monitor0"
  47.     VendorName   "Monitor Vendor"
  48.     ModelName    "Monitor Model"
  49. EndSection
  50.  
  51. Section "Monitor"
  52.     Identifier   "Monitor1"
  53.     VendorName   "Monitor Vendor"
  54.     ModelName    "Monitor Model"
  55. EndSection
  56.  
  57. Section "Monitor"
  58.     Identifier   "Monitor2"
  59.     VendorName   "Monitor Vendor"
  60.     ModelName    "Monitor Model"
  61. EndSection
  62.  
  63. Section "Device"
  64.         ### Available Driver options are:-
  65.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  66.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  67.         ### <percent>: "<f>%"
  68.         ### [arg]: arg optional
  69.         #Option     "DRI"                   # [<bool>]
  70.         #Option     "ColorKey"              # <i>
  71.         #Option     "VideoKey"              # <i>
  72.         #Option     "FallbackDebug"         # [<bool>]
  73.         #Option     "Tiling"                # [<bool>]
  74.         #Option     "LinearFramebuffer"     # [<bool>]
  75.         #Option     "Shadow"                # [<bool>]
  76.         #Option     "SwapbuffersWait"       # [<bool>]
  77.         #Option     "TripleBuffer"          # [<bool>]
  78.         #Option     "XvMC"                  # [<bool>]
  79.         #Option     "XvPreferOverlay"       # [<bool>]
  80.         #Option     "DebugFlushBatches"     # [<bool>]
  81.         #Option     "DebugFlushCaches"      # [<bool>]
  82.         #Option     "DebugWait"             # [<bool>]
  83.         #Option     "HotPlug"               # [<bool>]
  84.         #Option     "RelaxedFencing"        # [<bool>]
  85.     Identifier  "Card0"
  86.     Driver      "intel"
  87.     BusID       "PCI:0:2:0"
  88. EndSection
  89.  
  90. Section "Device"
  91.         ### Available Driver options are:-
  92.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  93.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  94.         ### <percent>: "<f>%"
  95.         ### [arg]: arg optional
  96.         #Option     "ShadowFB"              # [<bool>]
  97.         #Option     "Rotate"                # <str>
  98.         #Option     "fbdev"                 # <str>
  99.         #Option     "debug"                 # [<bool>]
  100.     Identifier  "Card1"
  101.     Driver      "fbdev"
  102.     BusID       "PCI:0:2:0"
  103. EndSection
  104.  
  105. Section "Device"
  106.         ### Available Driver options are:-
  107.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  108.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  109.         ### <percent>: "<f>%"
  110.         ### [arg]: arg optional
  111.         #Option     "ShadowFB"              # [<bool>]
  112.         #Option     "DefaultRefresh"        # [<bool>]
  113.         #Option     "ModeSetClearScreen"    # [<bool>]
  114.     Identifier  "Card2"
  115.     Driver      "vesa"
  116.     BusID       "PCI:0:2:0"
  117. EndSection
  118.  
  119. Section "Screen"
  120.     Identifier "Screen0"
  121.     Device     "Card0"
  122.     Monitor    "Monitor0"
  123.     SubSection "Display"
  124.         Viewport   0 0
  125.         Depth     1
  126.     EndSubSection
  127.     SubSection "Display"
  128.         Viewport   0 0
  129.         Depth     4
  130.     EndSubSection
  131.     SubSection "Display"
  132.         Viewport   0 0
  133.         Depth     8
  134.     EndSubSection
  135.     SubSection "Display"
  136.         Viewport   0 0
  137.         Depth     15
  138.     EndSubSection
  139.     SubSection "Display"
  140.         Viewport   0 0
  141.         Depth     16
  142.     EndSubSection
  143.     SubSection "Display"
  144.         Viewport   0 0
  145.         Depth     24
  146.     EndSubSection
  147. EndSection
  148.  
  149. Section "Screen"
  150.     Identifier "Screen1"
  151.     Device     "Card1"
  152.     Monitor    "Monitor1"
  153.     SubSection "Display"
  154.         Viewport   0 0
  155.         Depth     1
  156.     EndSubSection
  157.     SubSection "Display"
  158.         Viewport   0 0
  159.         Depth     4
  160.     EndSubSection
  161.     SubSection "Display"
  162.         Viewport   0 0
  163.         Depth     8
  164.     EndSubSection
  165.     SubSection "Display"
  166.         Viewport   0 0
  167.         Depth     15
  168.     EndSubSection
  169.     SubSection "Display"
  170.         Viewport   0 0
  171.         Depth     16
  172.     EndSubSection
  173.     SubSection "Display"
  174.         Viewport   0 0
  175.         Depth     24
  176.     EndSubSection
  177. EndSection
  178.  
  179. Section "Screen"
  180.     Identifier "Screen2"
  181.     Device     "Card2"
  182.     Monitor    "Monitor2"
  183.     SubSection "Display"
  184.         Viewport   0 0
  185.         Depth     1
  186.         Modes     "1366x768"  "1024x768" "640x480"
  187.     EndSubSection
  188.     SubSection "Display"
  189.         Viewport   0 0
  190.         Depth     4
  191.         Modes     "1366x768"  "1024x768" "640x480"
  192.     EndSubSection
  193.     SubSection "Display"
  194.         Viewport   0 0
  195.         Depth     8
  196.         Modes     "1366x768"  "1024x768" "640x480"
  197.     EndSubSection
  198.     SubSection "Display"
  199.         Viewport   0 0
  200.         Depth     15
  201.         Modes     "1366x768"  "1024x768" "640x480"
  202.     EndSubSection
  203.     SubSection "Display"
  204.         Viewport   0 0
  205.         Depth     16
  206.         Modes     "1366x768"  "1024x768" "640x480"
  207.     EndSubSection
  208.     SubSection "Display"
  209.         Viewport   0 0
  210.         Depth     24
  211.         Modes     "1366x768"  "1024x768" "640x480"
  212.     EndSubSection
  213. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement