Xorg.conf-generic-laptop 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # Provided by kirk, 9 Nov. 2009, for Xorg 7.5.
  2. Section "ServerLayout"
  3. Identifier "Default Layout"
  4. Screen "Default Screen" 0 0
  5. InputDevice "SynapticsMouse" "AlwaysCore"
  6. InputDevice "Keyboard0" "CoreKeyboard"
  7. InputDevice "Mouse0" "CorePointer"
  8. EndSection
  9. Section "ServerFlags"
  10. Option "AllowMouseOpenFail" "true"
  11. Option "AutoAddDevices" "False" # No HAL
  12. Option "DontZap" "false"
  13. EndSection
  14. Section "Device"
  15. Identifier "Configured Video Device"
  16. EndSection
  17. Section "Monitor"
  18. Identifier "Configured Monitor"
  19. EndSection
  20. Section "Screen"
  21. Identifier "Default Screen"
  22. Monitor "Configured Monitor"
  23. Device "Configured Video Device"
  24. EndSection
  25. Section "Module"
  26. Load "synaptics"
  27. EndSection
  28. Section "InputDevice"
  29. Identifier "Keyboard0"
  30. Driver "kbd"
  31. Option "XkbRules" "xorg"
  32. Option "XkbModel" "pc102"
  33. Option "XkbLayout" "us" #xkeymap0
  34. EndSection
  35. Section "InputDevice"
  36. #Option "Emulate3Timeout" "50"
  37. Identifier "Mouse0"
  38. Driver "mouse"
  39. Option "Protocol" "auto" #mouse0protocol
  40. Option "Device" "/dev/mouse"
  41. #Option "Emulate3Buttons"
  42. Option "ZAxisMapping" "4 5" #scrollwheel
  43. EndSection
  44. Section "InputDevice"
  45. Identifier "SynapticsMouse"
  46. Driver "synaptics"
  47. Option "Device" "/dev/psaux"
  48. Option "Protocol" "auto-dev"
  49. Option "LeftEdge" "120"
  50. Option "RightEdge" "930"
  51. Option "TopEdge" "120"
  52. Option "BottomEdge" "650"
  53. Option "FingerLow" "14"
  54. Option "FingerHigh" "15"
  55. Option "MaxTapTime" "0"
  56. Option "MaxTapMove" "110"
  57. Option "VertScrollDelta" "20"
  58. Option "MinSpeed" "0.3"
  59. Option "MaxSpeed" "0.75"
  60. Option "AccelFactor" "0.030"
  61. Option "EdgeMotionMinSpeed" "200"
  62. Option "EdgeMotionMaxSpeed" "200"
  63. Option "UpDownScrolling" "1"
  64. Option "CircularScrolling" "1"
  65. Option "CircScrollDelta" "0.1"
  66. Option "CircScrollTrigger" "2"
  67. EndSection