True. I have a love/hate relationship with everything Apple. But one thing I was instantly hooked on was the two-finger scroll option on my Macbook. The 1201n as many other eee netbooks has a Synaptic trackpad. The old 1000h worked out-of-the-box when selecting the two-finger scroll in the Gnome preferences, but the 1201n did not.
I’ve read some solutions on the net, but it all boils down to setting the Synaptics fdi policy in the HAL prefs, reboot and set the two-finger scroll in the Gnome mouse-preference pane on.
/etc/hal/fdi/policy/11-x11-synaptics.fdi
<?xml version="1.0" encoding="ISO-8859-1"?>
<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">1</merge>
<merge key="input.x11_options.HorizTwoFingerScroll" type="string">1</merge>
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.TapButton2" type="string">3</merge>
<merge key="input.x11_options.TapButton3" type="string">2</merge>
</match>
</device>
</deviceinfo>
This works on Ubuntu Karmic 9.10, but I’m sure it works on any other distro. You don’t have to enable the shmconfig and/or mount the tmpfs as long if you are not interested in running synclient statistics.