Hello and thank you for this code on disabling the tapping click on the touchpad. It was also to sensitive on my ibook g4. Also, thanks for the hard work you put into this project. Really enjoying mintppc 9. I'm no programmer and have a hard time moving around the command line, but enjoy the struggle. Thanks again.
correct Joe. I don't really see it as a bug, but a feature request. I like the tapping click on the touchpad. The good news is that I have a solution for that:
In /etc/init.d I created a file called trackpad-notap (as root of course):
Code:
sudo nano /etc/init.d/trackpad-notap
I pasted the following lines into it:
Code:
#!/bin/sh
trackpad notap
To make it executable you do:
Code:
sudo chmod +x trackpad-notap
Then add it to the run time scripts:
Code:
sudo update-rc.d trackpad-notap defaults
reference:
http://www.debian-administration.org/ar ... ith_Debian