You are not logged in.
Pages: 1
Hello,
Since I've installed Archlinux on my laptop, I've not smooth movements with my mouse, and it's quite difficult to use it.
As far I've not found the solution yet :-(
I've installed these:
[~] pacman -Qs synaptics
local/gsynaptics 0.9.16-1
A settings tool for Synaptics touchpad driver
local/xf86-input-synaptics 1.3.0-2 (xorg-input-drivers)
Synaptics driver for notebook touchpadsAnd this is my synaptics file:
[~] cat /etc/X11/xorg.conf.d/10-synaptics.conf
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
# Option "TapButton1" "1"
# Option "TapButton2" "2"
# Option "TapButton3" "3"
EndSectionI don't know which kind of informations I can give to help ?! :-\
Thanks a lot for your help ![]()
Nico
Offline
Could you give output from
$ xinput listYou may also try this
Section "InputDevice"
Identifier "Touchpad"
Driver "synaptics"
Option "Device" "/dev/input/mouse0"
Option "Protocol" "auto-dev"
Option "LeftEdge" "130"
Option "RightEdge" "840"
Option "TopEdge" "130"
Option "BottomEdge" "640"
Option "FingerLow" "7"
Option "FingerHigh" "8"
Option "MaxTapTime" "180"
Option "MaxTapMove" "110"
Option "EmulateMidButtonTime" "75"
Option "VertScrollDelta" "20"
Option "HorizScrollDelta" "20"
Option "MinSpeed" "0.25"
Option "MaxSpeed" "0.50"
Option "AccelFactor" "0.010"
Option "EdgeMotionMinSpeed" "200"
Option "EdgeMotionMaxSpeed" "200"
Option "UpDownScrolling" "1"
Option "CircularScrolling" "1"
Option "CircScrollDelta" "0.1"
Option "CircScrollTrigger" "2"
Option "SHMConfig" "on"
Option "Emulate3Buttons" "on"
EndSectionIt's from wiki for synaptics https://wiki.archlinux.org/index.php/Synaptics
Offline
Pages: 1