I originally installed wattOS on an older desktop computer...I liked it so much, that I just recently installed it on a newer laptop that I have too.
Of course, that brought up the need to disable the touchpad while typing. This can be fixed in a couple of ways.
1. If you prefer a GUI tool for this, you can install GPointing Device Settings. It's available through the Synaptic Package Manager, or you can install it with the terminal with the following command...
sudo apt-get install gpointing-device-settings
This works well, but be aware...you will have to mark your settings again each time you reboot or log out of your computer.
2. Instead of a GUI tool, simply add a command to the autostart file. That way, it's permanent.
First, you need to find the right file. Open your file manager, click View in the tool bar, and click on Show Hidden. Now follow this file path...
.config>lxsession>LXDE>autostart
Now...if you want to simply disable your touchpad while typing, add the following line to the autostart file...
@syndaemon -i 1.0 -d
This is set for a 1 second delay; hence, the 1.0 in the command. That number can be varied to your preference, and can be adjusted by tenths. Such as 1.1, 1.7, 2.5, etc...
However, if you're like me, and you don't want to use your touchpad at all, you can completely disable it by adding this command instead...
@synclient TouchpadOff=1
3. Close the autostart file, and tell it to save the changes. Now log out and log back in to your computer, and your settings will be permanently saved.