Saturday, February 13, 2010

Adjust Sensitive Area of Synaptics Touchpad - Karmic Koala Ubuntu 9.10

Sometimes you may want to adjust the sensitive area (or other settings) of your touchpad. To do so type "synclient -l" in a terminal and you will get a list of options. At the bottom you should see AreaLeftEdge AreaRightEdge AreaTopEdge AreaBottomEdge which are probably set to 0. If you change these to a nonzero value the you it will define the edge of the touchpad. Use your LeftEdge RightEdge TopEdge BottomEdge values as references because they are close to the edge of your touchpad.
After you determine the values you need then you can put them in your HAL configuration file:
/etc/hal/fdi/policy$ cat 11-x11-synaptics.fdi

<deviceinfo version="0.2">
<device>
<match key="info.capabilities" contains="input.touchpad">
<merge key="input.x11_driver" type="string">synaptics</merge>
<merge key="input.x11_options.SHMConfig" type="string">On</merge>

<merge key="input.x11_options.EmulateTwoFingerMinZ" type="string">40</merge>

<merge key="input.x11_options.VertTwoFingerScroll" type="string">true</merge>
<merge key="input.x11_options.HorizTwoFingerScroll" type="string">false</merge>
<merge key="input.x11_options.JumpyCursorThreshold" type="string">300</merge>
<merge key="input.x11_options.AreaBottomEdge" type="string">5000</merge>
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.TapButton2" type="string">3</merge> <!--two finger tap -> middle click(3) -->
<merge key="input.x11_options.TapButton3" type="string">2</merge> <!--three finger tap -> right click(2). almost impossible to click -->
</match>
</device>
</deviceinfo>

No comments:

Post a Comment