Thanks for the reply, Centinul.
Here's the mouse section of my xorg.conf file:
Code:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "synaptics"
Option "Protocol" "auto-dev"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "False"
Option "MinSpeed" "0.02"
Option "MaxSpeed" "0.18"
Option "ZAxisMapping" "4 5"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "Edges" "1900 5400 1900 4400"
Option "VertScrollDelta" "200"
Option "Finger" "25 30"
Option "AccelFactor" "0.0010"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
# Driver "psmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
# Option "Device" "/dev/psaux"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
EndSection
As you can see, there is a bit about ImPS/2. Any further ideas?
Thanks.
--Dane