Advertisement
fresneda

xorg.conf

May 19th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.64 KB | None | 0 0
  1. Section "ServerFlags"
  2.     Option         "DefaultServerLayout" "Layout0"
  3. #    Option         "AllowMouseOpenFail"  "true"
  4.     Option         "AutoAddDevices"      "false"
  5.     Option         "AutoEnableDevices"   "false"
  6.     Option         "DontZap"             "false"
  7. #    Option         "Xinerama" "0"
  8.     Option         "AutoAddGPU" "false"
  9. EndSection
  10.  
  11. Section "ServerLayout"
  12.     Identifier     "Layout0"
  13.     Screen         0  "Screen0" 0 0
  14.     InputDevice    "kbd_0" "CoreKeyboard"
  15.     InputDevice    "mouse_0" "CorePointer"
  16.     Option         "AllowEmptyInput"       "true"
  17. #    Option        "DontVTSwitch"          "true"
  18. EndSection
  19.  
  20. Section "ServerLayout"
  21.     Identifier     "Layout1"
  22.     Screen         1  "Screen1" 0 0
  23.     InputDevice    "kbd_1" "CoreKeyboard"
  24.     InputDevice    "mouse_1" "CorePointer"
  25.     Option         "AllowEmptyInput"       "true"
  26.     Option     "DontVTSwitch"          "true"
  27. EndSection
  28.  
  29. Section "Module"
  30. #    Load           "dbe"
  31. #    Load           "extmod"
  32. #    Load           "type1"
  33. #    Load           "freetype"
  34. #    Load           "glx"
  35. #    Load      "dri2"
  36. #    Load      "glamoregl"
  37. EndSection
  38.  
  39. Section "InputDevice"
  40.     Identifier     "kbd_0"
  41.     Driver     "evdev"
  42.     Option         "Device"        "/dev/input/by-path/pci-0000:00:1d.7-usb-0:6.4:1.0-event-kbd"
  43.     Option         "GrabDevice"    "on"
  44.     Option     "XkbRules" "xorg"
  45.     Option     "XkbModel" "dellusbmm"
  46.     Option     "XkbLayout" "br"
  47.     Option         "Protocol"      "Standard"
  48. EndSection
  49.  
  50. Section "InputDevice"
  51.     Identifier     "kbd_1"
  52.     Driver         "evdev"
  53.     Option         "Device"        "/dev/input/by-path/pci-0000:00:1d.7-usb-0:5.1.3.4:1.0-event-kbd"
  54.     Option         "GrabDevice"    "on"
  55.     Option     "XkbRules" "xorg"
  56.     Option     "XkbModel" "dellusbmm"
  57.     Option     "XkbLayout" "br"
  58.     Option         "Protocol"      "Standard"
  59. EndSection
  60.  
  61. Section "InputDevice"
  62.     Identifier     "mouse_0"
  63.     Driver         "evdev"
  64.     Option         "Device"        "/dev/input/by-path/pci-0000:00:1d.1-usb-0:1:1.0-event-mouse"
  65.     Option         "GrabDevice"    "on"
  66. EndSection
  67.  
  68. Section "InputDevice"
  69.     Identifier     "mouse_1"
  70.     Driver         "evdev"
  71.     Option         "Device"        "pci-0000:00:1d.7-usb-0:5.1.2:1.0-event-mouse"
  72.     Option         "GrabDevice"    "on"
  73. EndSection
  74.  
  75. Section "Monitor"
  76.     Identifier     "Monitor0"
  77.     Option     "VendorName" "Unknown"
  78.     Option     "ModelName" "Generic Autodetecting Monitor"
  79. #    Option    "DPMS" "true"
  80. EndSection
  81.  
  82. Section "Monitor"
  83.     Identifier     "Monitor1"
  84.     Option     "VendorName" "Unknown"
  85.     Option     "ModelName" "Generic Autodetecting Monitor"
  86. EndSection
  87.  
  88. Section "Device"
  89.     Identifier     "Device0"
  90.     Driver         "fglrx"
  91. #    Option        "AccelMethod" "glamor"
  92. #    Option        "AccelMethod" "EXA"
  93.     VendorName     ""
  94.     BoardName      ""
  95.     BusID          "PCI:2:0:0"
  96.     Screen          0
  97. #    Option         "EXAVSync"
  98. EndSection
  99.  
  100. Section "Device"
  101.     Identifier     "Device1"
  102.     Driver         "fglrx"
  103.     VendorName     ""
  104.     BoardName      ""
  105.     BusID          "PCI:3:0:0"
  106.     Screen          1
  107. #    Option         "AccelMethod" "UXA"
  108. #    Option         "TearFree" "1"
  109. EndSection
  110.  
  111. Section "Screen"
  112.     Identifier "Screen0"
  113.     Device     "Device0"
  114.     Monitor    "Monitor0"
  115.     DefaultDepth     24
  116.     SubSection "Display"
  117.         Depth     24
  118.     EndSubSection
  119. EndSection
  120.  
  121. Section "Screen"
  122.     Identifier     "Screen1"
  123.     Device         "Device1"
  124.     Monitor        "Monitor1"
  125.     DefaultDepth    24
  126.     SubSection     "Display"
  127.         Depth       24
  128.     EndSubSection
  129. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement