Advertisement
Guest User

xorg.conf

a guest
Nov 21st, 2010
50
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.     InputDevice    "Mouse0" "CorePointer"
  6.     InputDevice    "Keyboard0" "CoreKeyboard"
  7. EndSection
  8.  
  9. Section "Files"
  10.     ModulePath   "/usr/lib/xorg/modules"
  11.     FontPath     "/usr/share/fonts/misc/"
  12.     FontPath     "/usr/share/fonts/TTF/"
  13.     FontPath     "/usr/share/fonts/OTF/"
  14.     FontPath     "/usr/share/fonts/Type1/"
  15.     FontPath     "/usr/share/fonts/100dpi/"
  16.     FontPath     "/usr/share/fonts/75dpi/"
  17. EndSection
  18.  
  19. Section "Module"
  20.     Load  "dri2"
  21.     Load  "record"
  22.     Load  "dbe"
  23.     Load  "dri"
  24.     Load  "FGL.renamed.libglx"
  25.     Load  "extmod"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29.     Identifier  "Keyboard0"
  30.     Driver      "kbd"
  31. EndSection
  32.  
  33. Section "InputDevice"
  34.     Identifier  "Mouse0"
  35.     Driver      "mouse"
  36.     Option      "Protocol" "auto"
  37.     Option      "Device" "/dev/input/mice"
  38.     Option      "ZAxisMapping" "4 5 6 7"
  39. EndSection
  40.  
  41. Section "Monitor"
  42.     Identifier   "Monitor0"
  43.     VendorName   "Monitor Vendor"
  44.     ModelName    "Monitor Model"
  45. EndSection
  46.  
  47. Section "Monitor"
  48.     Identifier   "Monitor1"
  49.     VendorName   "Monitor Vendor"
  50.     ModelName    "Monitor Model"
  51. EndSection
  52.  
  53. Section "Device"
  54.         ### Available Driver options are:-
  55.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  56.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  57.         ### <percent>: "<f>%"
  58.         ### [arg]: arg optional
  59.         #Option     "ShadowFB"              # [<bool>]
  60.         #Option     "DefaultRefresh"        # [<bool>]
  61.         #Option     "ModeSetClearScreen"    # [<bool>]
  62.     Identifier  "Card0"
  63.     Driver      "vesa"
  64.     BusID       "PCI:1:5:0"
  65. EndSection
  66.  
  67. Section "Device"
  68.         ### Available Driver options are:-
  69.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  70.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  71.         ### <percent>: "<f>%"
  72.         ### [arg]: arg optional
  73.         #Option     "ShadowFB"              # [<bool>]
  74.         #Option     "DefaultRefresh"        # [<bool>]
  75.         #Option     "ModeSetClearScreen"    # [<bool>]
  76.     Identifier  "Card1"
  77.     Driver      "vesa"
  78.     BusID       "PCI:2:0:0"
  79. EndSection
  80.  
  81. Section "Screen"
  82.     Identifier "Screen0"
  83.     Device     "Card0"
  84.     Monitor    "Monitor0"
  85.     SubSection "Display"
  86.         Viewport   0 0
  87.         Depth     1
  88.     EndSubSection
  89.     SubSection "Display"
  90.         Viewport   0 0
  91.         Depth     4
  92.     EndSubSection
  93.     SubSection "Display"
  94.         Viewport   0 0
  95.         Depth     8
  96.     EndSubSection
  97.     SubSection "Display"
  98.         Viewport   0 0
  99.         Depth     15
  100.     EndSubSection
  101.     SubSection "Display"
  102.         Viewport   0 0
  103.         Depth     16
  104.     EndSubSection
  105.     SubSection "Display"
  106.         Viewport   0 0
  107.         Depth     24
  108.     EndSubSection
  109. EndSection
  110.  
  111. Section "Screen"
  112.     Identifier "Screen1"
  113.     Device     "Card1"
  114.     Monitor    "Monitor1"
  115.     SubSection "Display"
  116.         Viewport   0 0
  117.         Depth     1
  118.     EndSubSection
  119.     SubSection "Display"
  120.         Viewport   0 0
  121.         Depth     4
  122.     EndSubSection
  123.     SubSection "Display"
  124.         Viewport   0 0
  125.         Depth     8
  126.     EndSubSection
  127.     SubSection "Display"
  128.         Viewport   0 0
  129.         Depth     15
  130.     EndSubSection
  131.     SubSection "Display"
  132.         Viewport   0 0
  133.         Depth     16
  134.     EndSubSection
  135.     SubSection "Display"
  136.         Viewport   0 0
  137.         Depth     24
  138.     EndSubSection
  139. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement