French version (English below)

La disposition de mon touchpad par rapport au clavier fais que je me retrouve régulièrement avec le pouce qui effleure le touchpad de mon ordinateur, ceci est très génant lorsque j'écris puisqu'il me déplace dès lors le curseur là où est la souris.

Pour désactiver la fonction tap-touch du touchpad voici comment j'ai fais sous Fedora 10: En gros j'ai suivi cette méthode décrite pendant les version bêta de Fedora.

  • Créez un fichier /etc/hal/fdi/policy/-synaptics.fdi qui contient ces informations:
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
   <device>     
       <match key="info.capabilities" contains="input.touchpad">     
           <merge key="input.x11_options.SHMConfig" type="string">On</merge>    
       </match>     
   </device>     
</deviceinfo>
  • Puis en tant que root faites donc un :
# service haldaemon restart
  • Et il nous vous reste plus qu'à configurer votre touchpad avec gsynaptics ( yum install gsynaptics) pour vos besoins ;)

Enjoy !!


English version

The position of my touchpad on my laptop is rather annoying since I constantly touch it with my hand while I am typing, so the tap-touch feature is for sure not my best friend.

Here is what I did to get rid of it. I basically followed this tutorial published during the development of Fedora 10.

  • Create a file /etc/hal/fdi/policy/-synaptics.fdi with the following content:
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
   <device>     
       <match key="info.capabilities" contains="input.touchpad">     
           <merge key="input.x11_options.SHMConfig" type="string">On</merge>    
       </match>     
   </device>     
</deviceinfo>
  • Then as root run:
# service haldaemon restart
  • With that you can just use the gsynaptics tool ( yum install gsynaptics) to configure your touchpad ;-)

Enjoy !*