Advertisement
Guest User

Untitled

a guest
Jul 4th, 2017
55
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  "dri"
  21.     Load  "extmod"
  22.     Load  "dri2"
  23.     Load  "dbe"
  24.     Load  "record"
  25.     Load  "glx"
  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     "SWcursor"              # [<bool>]
  60.         #Option     "HWcursor"              # [<bool>]
  61.         #Option     "NoAccel"               # [<bool>]
  62.         #Option     "ShadowFB"              # [<bool>]
  63.         #Option     "VideoKey"              # <i>
  64.     Identifier  "Card0"
  65.     Driver      "nouveau"
  66.     BusID       "PCI:1:0:0"
  67. EndSection
  68.  
  69. Section "Device"
  70.         ### Available Driver options are:-
  71.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  72.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  73.         ### <percent>: "<f>%"
  74.         ### [arg]: arg optional
  75.         #Option     "ShadowFB"              # [<bool>]
  76.         #Option     "DefaultRefresh"        # [<bool>]
  77.         #Option     "ModeSetClearScreen"    # [<bool>]
  78.     Identifier  "Card1"
  79.     Driver      "vesa"
  80.     BusID       "PCI:0:2:0"
  81. EndSection
  82.  
  83. Section "Screen"
  84.     Identifier "Screen0"
  85.     Device     "Card0"
  86.     Monitor    "Monitor0"
  87.     SubSection "Display"
  88.         Viewport   0 0
  89.         Depth     1
  90.     EndSubSection
  91.     SubSection "Display"
  92.         Viewport   0 0
  93.         Depth     4
  94.     EndSubSection
  95.     SubSection "Display"
  96.         Viewport   0 0
  97.         Depth     8
  98.     EndSubSection
  99.     SubSection "Display"
  100.         Viewport   0 0
  101.         Depth     15
  102.     EndSubSection
  103.     SubSection "Display"
  104.         Viewport   0 0
  105.         Depth     16
  106.     EndSubSection
  107.     SubSection "Display"
  108.         Viewport   0 0
  109.         Depth     24
  110.     EndSubSection
  111. EndSection
  112.  
  113. Section "Screen"
  114.     Identifier "Screen1"
  115.     Device     "Card1"
  116.     Monitor    "Monitor1"
  117.     SubSection "Display"
  118.         Viewport   0 0
  119.         Depth     1
  120.     EndSubSection
  121.     SubSection "Display"
  122.         Viewport   0 0
  123.         Depth     4
  124.     EndSubSection
  125.     SubSection "Display"
  126.         Viewport   0 0
  127.         Depth     8
  128.     EndSubSection
  129.     SubSection "Display"
  130.         Viewport   0 0
  131.         Depth     15
  132.     EndSubSection
  133.     SubSection "Display"
  134.         Viewport   0 0
  135.         Depth     16
  136.     EndSubSection
  137.     SubSection "Display"
  138.         Viewport   0 0
  139.         Depth     24
  140.     EndSubSection
  141. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement