Differences between revisions 4 and 5
Revision 4 as of 2009-09-10 23:29:19
Size: 912
Editor: CarlNobile
Comment:
Revision 5 as of 2009-09-10 23:30:24
Size: 928
Editor: CarlNobile
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
Open this file: Open a new file as shown below:

Synaptics Touchpad

If you need to access the synaptics touchpad driver shared memory, on the new /etc/X11/xorg.conf file. You know the ones that have almost nothing in them. :)

This is often needed when you want to turn off the annoying touch pad when you are editing files and your finger brushes against the pad and you start typing in places you weren't expecting.

Open a new file as shown below:

$ sudo nano /etc/hal/fdi/policy/shmconfig.fdi

Then copy these lines and drop them into the empty file you just created.

<?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>

This is a link to the source of the above.

SynapticsTouchpad (last edited 2009-09-10 23:33:33 by CarlNobile)