Advertisement
Guest User

Untitled

a guest
Apr 5th, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerFlags"
  2.         Option "AutoAddDevices"     "false"
  3.         Option "AutoEnableDevices"  "false"
  4.         Option "AllowMouseOpenFail" "on"
  5.         Option "AllowEmptyInput" "on"
  6.         Option "ZapWarning"         "on"
  7.         Option "HandleSpecialKeys"  "off" # Zapping on
  8.         Option "DRI2" "on"
  9.         Option "Xinerama" "off"
  10. EndSection
  11.  
  12. Section "ServerLayout"
  13.         Identifier     "Seat0"
  14.         Screen       0 "Screen0" 0 0
  15.         Screen       1 "Screen1" RightOf "Screen0"
  16.         InputDevice    "Mouse0" "CorePointer"
  17.         InputDevice    "Keyboard0" "CoreKeyboard"
  18.         Option         "Clone" "off"
  19.         Option         "AutoAddDevices" "off"
  20.         Option         "DisableModInDev" "true"
  21. EndSection
  22.  
  23. #Section "ServerLayout"
  24. #       Identifier     "Seat1"
  25. #       Screen         "Screen1" 0 0
  26. #       InputDevice    "Mouse1" "CorePointer"
  27. #       InputDevice    "Keyboard1" "CoreKeyboard"
  28. #       Option         "Clone" "off"
  29. #       Option         "AutoAddDevices" "off"
  30. #       Option         "DisableModInDev" "true"
  31. #EndSection
  32.  
  33.  
  34.  
  35. Section "Files"
  36.         ModulePath   "/usr/lib64/X11/modules"
  37.         FontPath     "catalogue:/etc/X11/fontpath.d"
  38. EndSection
  39.  
  40. Section "Module"
  41.         Load  "glx"
  42. EndSection
  43.  
  44. Section "InputDevice"
  45.         Identifier  "Keyboard0"
  46.         Driver      "evdev"
  47.         Option      "Device" "/dev/input/event0"
  48. EndSection
  49.  
  50. Section "InputDevice"
  51.         Identifier  "Keyboard1"
  52.         Driver      "evdev"
  53.         Option      "Device" "/dev/input/event6"
  54. EndSection
  55.  
  56.  
  57.  
  58. Section "InputDevice"
  59.         Identifier  "Mouse0"
  60.         Driver      "evdev"
  61.         Option      "Device" "/dev/input/event15"
  62. EndSection
  63.  
  64. Section "InputDevice"
  65.         Identifier  "Mouse1"
  66.         Driver      "evdev"
  67.         Option      "Device" "/dev/input/event8"
  68. EndSection
  69.  
  70.  
  71.  
  72. Section "Monitor"
  73.         Identifier   "Monitor0"
  74.         VendorName   "Monitor Vendor"
  75.         ModelName    "Monitor Model"
  76.         #DisplaySize  64 36
  77. EndSection
  78.  
  79. Section "Monitor"
  80.         Identifier   "Monitor1"
  81.         VendorName   "Monitor Vendor"
  82.         ModelName    "Monitor Model"
  83.         #DisplaySize  64 36
  84. EndSection
  85. Section "Device"
  86.         ### Available Driver options are:-
  87.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  88.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  89.         ### <percent>: "<f>%"
  90.         ### [arg]: arg optional
  91.         #Option     "SWcursor"                  # [<bool>]
  92.         #Option     "kmsdev"                    # <str>
  93.         #Option     "ShadowFB"                  # [<bool>]
  94.         Identifier  "Card0"
  95.         Driver      "intel"
  96.         BusID       "PCI:0:2:0"
  97. EndSection
  98.  
  99.  
  100.  
  101. Section "Device"
  102.         ### Available Driver options are:-
  103.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  104.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  105.         ### <percent>: "<f>%"
  106.         ### [arg]: arg optional
  107.         #Option     "SWcursor"                  # [<bool>]
  108.         #Option     "kmsdev"                    # <str>
  109.         #Option     "ShadowFB"                  # [<bool>]
  110.         Identifier  "Card1"
  111.         Driver      "intel"
  112.         BusID       "PCI:0:2:1"
  113. EndSection
  114.  
  115.  
  116.  
  117. Section "Screen"
  118.         Identifier "Screen0"
  119.         Device     "Card0"
  120.         Monitor    "Monitor0"
  121.         #Option     "DPI" "100x100"
  122.  
  123.         SubSection "Display"
  124.                 Modes "1366x768"
  125.                 Viewport   0 0
  126.                 Depth     24
  127.         EndSubSection
  128. EndSection
  129.  
  130. Section "Screen"
  131.         Identifier "Screen1"
  132.         Device     "Card1"
  133.         Monitor    "Monitor1"
  134.         #Option     "DPI" "100x100"
  135.         SubSection "Display"
  136.                 Modes "1920x1080"
  137.                 Viewport   0 0
  138.                 Depth     24
  139.         EndSubSection
  140. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement