Advertisement
Guest User

Satish

a guest
Feb 12th, 2010
543
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. Section "ServerFlags"
  2. Option "AutoEnableDevices" "false"
  3. Option "AutoAddDevices" "false"
  4. Option "DefaultLayout" "seat"
  5. Option "DontZoom" "true"
  6. Option "DontZap" "true"
  7. Option "AllowMouseOpenFail" "yes"
  8. EndSection
  9.  
  10. Section "Module"
  11. Load "ddc"
  12. EndSection
  13.  
  14. Section "Files"
  15. ModulePath "/usr/lib/xorg/modules"
  16. ModulePath "/usr/local/lib/xorg/modules"
  17. EndSection
  18.  
  19. Section "Device"
  20. Identifier "dl"
  21. Driver "displaylink"
  22. # Option "rotate" "CCW"
  23. Option "fbdev" "/dev/usbseat/%ID_SEAT%/display"
  24. EndSection
  25.  
  26. Section "InputDevice"
  27. Identifier "keyboard"
  28. Driver "evdev"
  29. Option "CoreKeyboard"
  30. Option "Device" "/dev/usbseat/1/keyboard"
  31. Option "XkbModel" "evdev"
  32. Option "XkbLayout" "us"
  33. EndSection
  34.  
  35. Section "InputDevice"
  36. Identifier "mouse"
  37. Driver "mouse"
  38. # Option "CorePointer"
  39. Option "Protocol" "IMPS/2"
  40. Option "Device" "/dev/usbseat/1/mouse"
  41. # Option "Buttons" "7"
  42. # Option "ZAxisMapping" "6 7"
  43. Option "SendCoreEvents" "true"
  44. EndSection
  45.  
  46. Section "Monitor"
  47. Identifier "monitor"
  48. EndSection
  49.  
  50. Section "Screen"
  51. Identifier "screen"
  52. Device "dl"
  53. Monitor "monitor"
  54. EndSection
  55.  
  56. Section "ServerLayout"
  57. Identifier "seat"
  58. Screen 0 "screen" 0 0
  59. InputDevice "keyboard" "CoreKeyboard"
  60. InputDevice "mouse" "CorePointer"
  61. EndSection
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement