Hi
I did this yesterday to disable clicking and scrolling on toucpad:
(machine: BIM Thinkpad T43, OS: Fedora 10 i386)
# cat > /etc/hal/fdi/policy/synaptics_notabnorscroll.fdi <<EOF
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- copy this to /etc/has/fdi/policy/ -->
<deviceinfo version="0.2">
<device>
<match key="input.x11_driver" string="synaptics">
<merge key="input.x11_options.SendCoreEvents" type="string">true</merge>
<merge key="input.x11_options.HorizScrollDelta" type="string">0</merge>
<merge key="input.x11_options.MaxTapTime" type="string">0</merge>
<merge key="input.x11_options.RightEdge" type="string">6000</merge>
<merge key="input.x11_options.BottomEdge" type="string">5000</merge>
<merge key="input.x11_options.VertEdgeScroll" type="string">false</merge>
<merge key="input.x11_options.HorizEdgeScroll" type="string">false</merge>
</match>
</device>
</deviceinfo>
EOF
# /etc/init.d/haldaemon restart
# <ctrl-alt-backspace>
(last key combination restarted X server)
After re-login touchpad worked as desired.
I am going to do similar thing with one Ubuntu 8.10 (dell laptop) in near future;
I do not expect much difference getting it to work...
Btw: is there way to insert verbatim text in this forum? The indentation
was lost in the data above (luckily I was not pasting python code
