techmik

mike.conf

Jul 13th, 2011
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. # my attempt to make a config file from my existing /xorg.conf.d/ files
  2.  
  3. Section "ServerFlags"
  4. Option "AutoAddDevices" "false"
  5. Option "AutoEnableDevices" "false"
  6. Option "AllowMouseOpenFail" "true"
  7. Option "DefaultServerLayout" "Desktop"
  8. EndSection
  9.  
  10. Section "InputDevice"
  11. Identifier "keyboard_Desktop"
  12. Driver "evdev"
  13. Option "Device" "/dev/input/by-id/usb-Microsoft_Microsoft_Wireless_Optical_Desktop®_2.10-event-kbd"
  14. EndSection
  15.  
  16. Section "InputDevice"
  17. Identifier "mouse_Desktop"
  18. Driver "evdev"
  19. Option "GrabDevice" "on"
  20. Option "Device" "/dev/input/by-id/usb-Microsoft_Microsoft_Wireless_Optical_Desktop®_2.10-event-mouse"
  21. EndSection
  22.  
  23. Section "InputDevice"
  24. Identifier "keyboard_Media"
  25. Driver "evdev"
  26. Option "Device" "/dev/input/by-id/usb-BTC_USB_Multimedia_Cordless_Kit-event-kbd"
  27. EndSection
  28.  
  29. Section "InputDevice"
  30. Identifier "mouse_Media"
  31. Driver "evdev"
  32. Option "GrabDevice" "on"
  33. Option "Device" "/dev/input/by-id/usb-Lite-On_Technology_Corp._USB_Mouse-event-mouse"
  34. EndSection
  35.  
  36. Section "ServerLayout"
  37. Identifier "Desktop"
  38. Screen 0 "Screen0" 0 0
  39. InputDevice "keyboard_Desktop"
  40. InputDevice "mouse_Desktop"
  41. Option "AllowEmptyInput" "true"
  42. EndSection
  43.  
  44. Section "ServerLayout"
  45. Identifier "Media"
  46. Screen 1 "Screen1" 0 0
  47. InputDevice "keyboard_Media"
  48. InputDevice "mouse_Media"
  49. Option "AllowEmptyInput" "true"
  50. EndSection
  51.  
  52. Section "Device"
  53. Identifier "Onboard Radeon"
  54. Driver "radeon"
  55. BusID "PCI:1:5:0"
  56. Option "Monitor-HDMI-0" "Right screen"
  57. EndSection
  58.  
  59. Section "Monitor"
  60. Identifier "Right screen"
  61. EndSection
  62.  
  63. Section "Screen"
  64. Identifier "Screen 1"
  65. Device "Onboard Radeon"
  66. Monitor "Right screen"
  67. DefaultDepth 24
  68. EndSection
  69.  
  70. Section "Device"
  71. Identifier "PCI nVidia"
  72. Driver "nouveau"
  73. BusID "PCI:2:0:0"
  74. Option "Monitor-DVI-1" "Left screen"
  75. Option "Monitor-DVI-2" "Center screen"
  76. EndSection
  77.  
  78. Section "Monitor"
  79. Identifier "Left screen"
  80. EndSection
  81.  
  82. Section "Monitor"
  83. Identifier "Monitor-DVI-2"
  84. EndSection
  85.  
  86. Section "Screen"
  87. Identifier "Screen 0"
  88. Device "PCI nVidia"
  89. Monitor "Left screen"
  90. DefaultDepth 24
  91. EndSection
Advertisement
Add Comment
Please, Sign In to add comment