|
|
发表于 2008-1-10 14:37:15
|
显示全部楼层
先安装这个包:
xserver-xorg-input-synaptics
然后修改xorg.conf文件:
加入下面这个section:
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/psaux"
Option " rotocol" "auto-dev"
#带#的为可选项,用来设置边界大小及速度及滚动等。具体见程序synclient.
#Option "LeftEdge" "1700"
#Option "RightEdge" "5300"
#Option "TopEdge" "1700"
#Option "BottomEdge" "4200"
#Option "FingerLow" "25"
#Option "Fingertop" "30"
#Option "MaxTapTime" "180"
#Option "MAxTapMove" "220"
#Option "VertScrollDelta" "100"
#Option "MinSpeed" "0.06"
#Option "MaxSpeed" "0.12"
#Option "AceelFactor" "0.0010"
Option "SHMConfig" "on"
#Option "RTCornerButton" "2"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
#在类似的地方再加入下面这一行:
InputDevice "Synaptics" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse" "SendCoreEvents"
EndSection |
|