You are not logged in.
Pages: 1
I've got an HP ZE4805US laptop with a synaptic touchpad that includes a scrollerbar functionality. I tried installing synaptics, but the only ability it gives me is tap-to-click.
does anyone know how I can configure my touchpad to scroll? (if it helps, i've got a LiveCD in which it is auto-detected)
I summon daemons from the depths of /etc/rc.d
Offline
Section "InputDevice"
Driver "synaptics"
Identifier "Mouse0"
Option "Device" "/dev/input/mouse0"
Option "Protocol" "auto"
# Option "LeftEdge" "1700"
# Option "RightEdge" "5300"
# Option "TopEdge" "1700"
# Option "BottomEdge" "4200"
# Option "FingerLow" "30"
# Option "FingerHigh" "32"
# Option "MaxTapTime" "180"
# Option "MaxTapMove" "220"
Option "VertScrollDelta" "0"
Option "HorizScrollDelta" "0"
Option "MinSpeed" "0.01"
Option "MaxSpeed" "0.04"
# Option "AccelFactor" "0.0010"
Option "SHMConfig" "on"
Option "ZAxisMapping" "4 5"
# Option "Repeater" "/dev/ps2mouse"
EndSection
My /etc/X11/xorg.conf entry for my synaptics touchpad.
Offline
Is it safe to assume you've already read everything here? If so, download and extract the source code, and read the INSTALL and README files - loads of info there.
iphitus - in case you don't already know, since release 0.14 there are a load of new parameters to play with - edge motion, circular scrolling, coasting, etc. I've just started looking at them myself - my current config is:
Section "Input Device"
Identifier "Synaptics Mouse"
Driver "synaptics"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "LeftEdge" "1700"
Option "RightEdge" "5300"
Option "TopEdge" "1700"
Option "BottomEdge" "4200"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "MaxDoubleTapTime" "360"
Option "FastTaps" "on"
Option "VertScrollDelta" "100"
Option "HorizScrollDelta" "100"
Option "MinSpeed" "0.09"
Option "MaxSpeed" "0.18"
Option "AccelFactor" "0.0015"
Option "EmulateMidButtonTime""100"
Option "EdgeMotionMinZ" "30"
Option "EdgeMotionMaxZ" "35"
Option "EdgeMotionMinSpeed" "100"
Option "EdgeMotionMaxSpeed" "150"
Option "EdgeMotionUseAlways" "off"
Option "TapButton1" "1"
Option "RBCornerButton" "3"
Option "LBCornerButton" "2"
Option "CoastingSpeed" "0.1"
Option "SHMConfig" "on"
EndSection
Offline
thanks, it works now!
I summon daemons from the depths of /etc/rc.d
Offline
Pages: 1