Advertisement
Guest User

xorg

a guest
Apr 25th, 2018
862
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/local/lib/xorg/modules"
  11.     FontPath     "/usr/local/share/fonts/misc/"
  12.     FontPath     "/usr/local/share/fonts/TTF/"
  13.     FontPath     "/usr/local/share/fonts/OTF/"
  14.     FontPath     "/usr/local/share/fonts/Type1/"
  15.     FontPath     "/usr/local/share/fonts/100dpi/"
  16.     FontPath     "/usr/local/share/fonts/75dpi/"
  17. EndSection
  18.  
  19. Section "Module"
  20.     Load  "glx"
  21. EndSection
  22.  
  23. Section "InputDevice"
  24.     Identifier  "Keyboard0"
  25.     Driver      "kbd"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29.     Identifier  "Mouse0"
  30.     Driver      "mouse"
  31.     Option      "Protocol" "auto"
  32.     Option      "Device" "/dev/sysmouse"
  33.     Option      "ZAxisMapping" "4 5 6 7"
  34. EndSection
  35.  
  36. Section "Monitor"
  37.     Identifier   "Monitor0"
  38.     VendorName   "Monitor Vendor"
  39.     ModelName    "Monitor Model"
  40. EndSection
  41.  
  42. Section "Monitor"
  43.     Identifier   "Monitor1"
  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     "Accel"                 # [<bool>]
  55.         #Option     "AccelMethod"           # <str>
  56.         #Option     "Backlight"             # <str>
  57.         #Option     "CustomEDID"            # <str>
  58.         #Option     "DRI"                   # <str>
  59.         #Option     "Present"               # [<bool>]
  60.         #Option     "ColorKey"              # <i>
  61.         #Option     "VideoKey"              # <i>
  62.         #Option     "Tiling"                # [<bool>]
  63.         #Option     "LinearFramebuffer"     # [<bool>]
  64.         #Option     "HWRotation"            # [<bool>]
  65.         #Option     "VSync"                 # [<bool>]
  66.         #Option     "PageFlip"              # [<bool>]
  67.         #Option     "SwapbuffersWait"       # [<bool>]
  68.         #Option     "TripleBuffer"          # [<bool>]
  69.         #Option     "XvPreferOverlay"       # [<bool>]
  70.         #Option     "HotPlug"               # [<bool>]
  71.         #Option     "ReprobeOutputs"        # [<bool>]
  72.         #Option     "XvMC"                  # [<bool>]
  73.         #Option     "ZaphodHeads"           # <str>
  74.         #Option     "VirtualHeads"          # <i>
  75.         #Option     "TearFree"              # [<bool>]
  76.         #Option     "PerCrtcPixmaps"        # [<bool>]
  77.         #Option     "FallbackDebug"         # [<bool>]
  78.         #Option     "DebugFlushBatches"     # [<bool>]
  79.         #Option     "DebugFlushCaches"      # [<bool>]
  80.         #Option     "DebugWait"             # [<bool>]
  81.         #Option     "BufferCache"           # [<bool>]
  82.     Identifier  "Card0"
  83.     Driver      "intel"
  84.     BusID       "PCI:0:2:0"
  85. EndSection
  86.  
  87. #Section "Device"
  88. #        ### Available Driver options are:-
  89. #        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  90. #        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  91. #        ### <percent>: "<f>%"
  92. #        ### [arg]: arg optional
  93. #        #Option     "ShadowFB"             # [<bool>]
  94. #        #Option     "DefaultRefresh"       # [<bool>]
  95. #        #Option     "ModeSetClearScreen"   # [<bool>]
  96. #   Identifier  "Card1"
  97. #   Driver      "vesa"
  98. #   BusID       "PCI:1:0:0"
  99. #EndSection
  100.  
  101. Section "Screen"
  102.     Identifier "Screen0"
  103.     Device     "Card0"
  104.     Monitor    "Monitor0"
  105.     SubSection "Display"
  106.         Viewport   0 0
  107.         Depth     1
  108.     EndSubSection
  109.     SubSection "Display"
  110.         Viewport   0 0
  111.         Depth     4
  112.     EndSubSection
  113.     SubSection "Display"
  114.         Viewport   0 0
  115.         Depth     8
  116.     EndSubSection
  117.     SubSection "Display"
  118.         Viewport   0 0
  119.         Depth     15
  120.     EndSubSection
  121.     SubSection "Display"
  122.         Viewport   0 0
  123.         Depth     16
  124.     EndSubSection
  125.     SubSection "Display"
  126.         Viewport   0 0
  127.         Depth     24
  128.     EndSubSection
  129. EndSection
  130.  
  131. Section "Screen"
  132.     Identifier "Screen1"
  133.     Device     "Card1"
  134.     Monitor    "Monitor1"
  135.     SubSection "Display"
  136.         Viewport   0 0
  137.         Depth     1
  138.     EndSubSection
  139.     SubSection "Display"
  140.         Viewport   0 0
  141.         Depth     4
  142.     EndSubSection
  143.     SubSection "Display"
  144.         Viewport   0 0
  145.         Depth     8
  146.     EndSubSection
  147.     SubSection "Display"
  148.         Viewport   0 0
  149.         Depth     15
  150.     EndSubSection
  151.     SubSection "Display"
  152.         Viewport   0 0
  153.         Depth     16
  154.     EndSubSection
  155.     SubSection "Display"
  156.         Viewport   0 0
  157.         Depth     24
  158.     EndSubSection
  159. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement