Ubuntu key mapping with Intrepid Ibex
Xubuntu Intrepid Ibex has done away with the traditional hacking of X11 config files for monitor, mouse, keyboard and other I/O devices. In this latest release uses X uses HAL to automatically configure itself with ‘reasonable defaults’. For me however, these defaults don’t play nicely with my IBM Thinkpad and Apple keyboard combination.
To emulate the standard wheel functionality,
$ cat /etc/hal/fdi/policy/mouse-wheel.fdi <match key="info.product" string="TPPS/2 IBM TrackPoint"> <merge key="input.x11_options.EmulateWheel" type="string">true</merge> <merge key="input.x11_options.EmulateWheelButton" type="string">2</merge> <merge key="input.x11_options.XAxisMapping" type="string">6 7</merge> <merge key="input.x11_options.YAxisMapping" type="string">4 5</merge> <merge key="input.x11_options.ZAxsisMapping" type="string">4 5</merge> <merge key="input.x11_options.Emulate3Buttons" type="string">true</merge> </match>
And turn off the brightness, volume, eject, etc button by defaults add this to /etc/modprobe.d/options
options hid pb_fnmode=2

SW Designs