There's a handy little CLI tool called syndaemon that does this for you
- Code: Select all
syndaemon -d
Shuts off the touchpad when you type and enables it two seconds after the last keystroke
If you add -t you only disable tapping and scrolling, not mouse movement (Just for your info - mostly it's the movement you want to disable)
If you add -i 1 it's enabled after one second
To make syndaemon start automatically add the command to the "Startup Applications" (for Gnome)
Open the menu and type star and you see it
Click the add button and enter syndaemon -d and give it a name (Notouch perhaps?)
In KDE 4 (Gloria) it is Applications > System > System settings > the Advanced tab > Autostart
Click Add program and enter syndaemon -d
To make sure that it works you should enable SHMConfig
In all editions except main and KDE you have to install SHMConfig
For Gnome
- Code: Select all
gksudo gedit /etc/hal/fdi/policy/shmconfig.fdi
For KDE
- Code: Select all
kdesudo kate /etc/hal/fdi/policy/shmconfig.fdi
This brings up an empty file
Add the following to that file
- Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
<device>
<match key="input.x11_driver" string="synaptics">
<merge key="input.x11_options.SHMConfig" type="string">True</merge>
</match>
</device>
</deviceinfo>
Save, close the file and reboot and you should be done
Note - for versions earlier than Felicia (Mint 6) this is added to xorg.conf
In
Section "InputDevice"
you add
Option "SHMConfig" "true"
Reference










