I am simply trying to enable tapping on my touchpad. When I move my finger over the pad, the cursor moves, but tapping does nothing.
First I opened this question because I was trying to permanently set the tapping config on startup, but after a recent update to the OS, now the synclient tapbutton1=1 command no longer works (as in it doesn't change anything and I still cannot tap to click).
I tried setting the tapbutton setting in /etc/X11/xorg.conf.d/70-synaptics.conf and rebooted, still cannot tap to click.
#/etc/X11/xorg.conf.d/70-synaptics.conf
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
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"
Option "FingerLow" "30"
Option "FingerHigh" "50"
Option "MaxTapTime" "125"
EndSection
I also removed my mouse from the usb port and rebooted, still no change.
UPDATE: Still no luck. The little progress I've made is using the modprobe command, but attempting any persistent changes yields zero results.
To ensure Synaptics is indeed the product I'm using:
root@nohupt:~# egrep -i 'synap|alps|etps|elan' /proc/bus/input/devices
N: Name="PS/2 Synaptics TouchPad"
Methods tried:
modprobe command - success but not persistent
modprobe -r psmouse modprobe psmouse proto=impsthis leaves me with my clunky startup.sh script, not the best solution (though it works, at least).
persistent modprobe config - failed
nano /etc/modprobe.d/touchpad.confadded following line, saved and rebooted
options psmouse proto=impspersistent Xserver config - failed
nano /usr/share/X11/xorg.conf.d/70-synaptics.confedited the following, saved and rebooted:
Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" Option "TapButton1" "1" Option "TapButton2" "3" Option "VertEdgeScroll" "1" Option "HorizEdgeScroll" "1" EndSectioncopied 70-synaptics.conf from usr/share to X11 config dir, saved and rebooted - failed
cp /usr/share/X11/xorg.conf.d/70-synaptics.conf /etc/X11/xorg.conf.d/70-synaptics.conf