I’ve just installed 11.2 RC1, and for the most part it is fantastic. However, I cannot find a way to disable touchpad tapping. Originally my xorg.conf contained the following section, to which I added the last line setting MaxTapTime to zero:
Section “InputDevice”
Driver “mouse” will be disabled unless ‘Option “AutoAddDevices” “off”’
This also failed to disable touchpad tapping. I’ve searched extensively but I can’t find anything to fix this problem. So now I’m at the mercy of the more knowledgeable people in this forum. Any ideas on how to disable touchpad tapping that doesn’t require manually disabling it with gsynaptics every time X11 restarts? Any help would be greatly appreciated. This tapping business is driving me insane.
Unfortunately, there is no GUI method for disabling tapping in KDE. I honestly don’t understand why this is the case, but for whatever reason the KDE folks have decided that touchpad tapping is Teh Awesome!!! and nobody in their right mind would want to turn it off.
I then moved the script to the ~/.kde4/Autostart directory and made it executable. That seems to have done the trick. I originally tried to set it up to run at startup from the KDE Autostart section in the system setting window, but that didn’t work no matter how I set it up (i.e. to run at startup, pre-KDE startup, as a shell script, or as a program). Additionally, I think the script has to have .sh as it’s suffix to run from the ~/.kde4/Autostart directory, but I may be wrong. In any case, this seems to be working for me-touchpad tapping has been disabled for the last several restarts. That said, it would be still be awfully nice if future versions of KDE provided a simple GUI tool to do this.
To update my last post, my solution is no longer working. It seems that now I can’t get autostart to reliably run my script at startup. I have placed my shell script in the ~/.kde4/Autostart directory, as well as the ~/.kde4/env and ~/.kde4/share/autostart directories, and it still won’t run. And as before, using the KDE GUI autostart setup doesn’t work either. So once again, I’m stuck without any way to shut off touchpad tapping. Any advice would be greatly appreciated, because if I don’t get this figured out soon, I’m going to have to dump 11.2.
Hi
Since you seem to have two issues, why not report it as a bugs, else
wait a few days and install RC2? Or else use Gnome as it works fine
here <ducking>
–
Cheers Malcolm °¿° (Linux Counter #276890)
openSUSE 11.2 RC 1 (i586) Kernel 2.6.31.3-1-desktop
up 7:15, 2 users, load average: 0.11, 0.14, 0.10
ASUS eeePC 1000HE ATOM N280 1.66GHz | GPU Mobile 945GM/GMS/GME
Thanks for the suggestions guys, but I think I might have it fixed. I noticed that on rare occasions autostart would work and tapping would be disabled at startup. This made me think that there might be some sort of timing issue, i.e. when my script was executed in the startup process. So I altered the script to delay the execution by 10 seconds after startup:
#!/bin/bash
sleep 10
synclient MaxTapTime=0
I put this script in my ~/.kde4/Autostart director. It has worked fine so far, and hopefully it will stay that way.