Page 1 of 1

touchpad tap to click

Posted: 2013/09/01 15:29:39
by russell23
Hi all,

I've installed Centos 6.4 (x86_64) in my new thinkpad t430. My touchpad works fine out of box, how ever, I am not able to use the the "tap to click". I am running KDE desktop. I could not find any setting that enable me to adjust. Could anyone shed some light on how to make it work?

Thanks in advance

Re: touchpad tap to click

Posted: 2013/09/01 17:48:37
by russell23
Hi all,

I've managed to make it work. All I did was created a file named 50-synaptics.conf in under "/etc/x11/xorg.conf.d/"

with the following,

[code]
Section "InputClass"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "VertEdgeScroll" "on"
Option "VertTwoFingerScroll" "on"
Option "HorizEdgeScroll" "on"
Option "HorizTwoFingerScroll" "on"
Option "CircularScrolling" "on"
Option "CircScrollTrigger" "2"
Option "EmulateTwoFingerMinZ" "40"
Option "EmulateTwoFingerMinW" "8"
Option "CoastingSpeed" "0"
EndSection
[/code]
And rebooted. It worked...