Ksynaptics. (Was preventing people from making a mistake)

Kevin Kofler kevin.kofler at chello.at
Sun Dec 7 19:28:48 UTC 2008


Todd Zullinger wrote:
> While the GUI apps don't seem to work without SHMConfig yet, you can
> still tweak the settings in xorg.conf or, better yet, via HAL.  I used
> to use xorg.conf since it existed by default anyway.  In F10, I've
> moved my settings to /etc/hal/fdi/policy/11-synaptics.fdi, which I
> created with the following contents:
>
> <match key="info.product" contains="Synaptics TouchPad">
>     <merge key="input.x11_options.CoastingSpeed" type="string">20</merge>
>     <merge key="input.x11_options.MinSpeed" type="string">0.09</merge>
>     <merge key="input.x11_options.MaxSpeed" type="string">0.18</merge>
>     <merge key="input.x11_options.EdgeMotionMaxSpeed"
>     type="string">600</merge>
> </match>

You're missing a valid XML header there. HAL apparently doesn't care, but
still: <?xml version="1.0" encoding="UTF-8"?> should be there. And you're
also missing the deviceinfo and device tags.

The following is a valid 11-synaptics.fdi file:
<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
   <device>
       <match key="info.capabilities" contains="input.touchpad">
           <merge key="input.x11_options.MaxTapTime" type="string">0</merge>
       </match>
   </device>
</deviceinfo>

(This one disables tapping.)

        Kevin Kofler




More information about the fedora-list mailing list