|
|
没有配的时候还能点击
配了以后主要是为了支持滚动, 但是直接点击功能没有了, 只能按触摸板下面的按钮.
下面是我的配置
- Section "InputDevice"
- Identifier "SynapticsTouchpad"
- Driver "synaptics"
- Option "AlwaysCore" "true" # send events to CorePointer
- #Option "Device" "/dev/input/mice"
- Option "Device" "/dev/psaux"
- Option "Protocol" "auto-dev"
- Option "SHMConfig" "true" # configurable at runtime? security risk
- Option "LeftEdge" "1700" # x coord left
- Option "RightEdge" "5300" # x coord right
- Option "TopEdge" "1700" # y coord top
- Option "BottomEdge" "4200" # y coord bottom
- Option "FingerLow" "25" # pressure below this level triggers release
- Option "FingerHigh" "30" # pressure above this level triggers touch
- Option "MaxTapTime" "180" # max time in ms for detecting tap
- Option "VertEdgeScroll" "true" # enable vertical scroll zone
- Option "HorizEdgeScroll" "true" # enable horizontal scroll zone
- Option "CornerCoasting" "true" # enable continuous scroll with finger in corner
- Option "CoastingSpeed" "0.30" # corner coasting speed
- Option "VertScrollDelta" "100" # edge-to-edge scroll distance of the vertical scroll
- Option "HorizScrollDelta" "100" # edge-to-edge scroll distance of the horizontal scroll
- Option "MinSpeed" "0.10" # speed factor for low pointer movement
- Option "MaxSpeed" "0.60" # maximum speed factor for fast pointer movement
- Option "AccelFactor" "0.0020" # acceleration factor for normal pointer movements
- Option "VertTwoFingerScroll" "true" # vertical scroll anywhere with two fingers
- Option "HorizTwoFingerScroll" "true" # horizontal scroll anywhere with two fingers
- EndSection
复制代码 |
|