On Tue, 7 Apr 2009, Mick wrote: > I have managed to: > > 1. Set gb as the default keyboard and used > the /use-multiple-layouts-with-kbd.fdi.bz2 with some mods to be able to > switch languages as before. > 2. Set up the synaptics driver so that it performs a right area - vertical > scroll. > > However, I have failed to: > > 3. Effect a left click when I tap on the synaptics pad. > 4. Double click on the synaptics pad. > 5. Press Ctrl+Alt+Backspace to restart xorg > > This is what my fdi currently looks like: > ===================================================== > <?xml version="1.0" encoding="UTF-8"?> > <deviceinfo version="0.2"> > > <!-- Keyboard configuration --> > <device> > <match key="info.capabilities" contains="input.keyboard"> > <merge key="input.x11_options.XkbModel" type="string">pc105</merge> > <merge key="input.x11_options.XkbLayout" type="string">gb,el</merge> > <merge key="input.x11_options.XkbOptions" > type="strlist">grp:alt_shift_toggle,grp_led:scroll,compose:menu</merge> > </match> > </device> > > <!-- touchpad --> > <device> > <match key="info.capabilities" contains="input.touchpad"> > <match key="info.product" contains="SynPS/2"> > <merge key="input.x11_driver" type="string">synaptics</merge> > <merge key="input.x11_options.SHMConfig" type="string">true</merge> > <merge key="input.x11_options.VertEdgeScroll" > type="string">true</merge> > <merge key="input.x11_options.HorizEdgeScroll" > type="string">true</merge> > <merge key="input.x11_options.TapButton1" type="string">true</merge>
Looks from the forum thread like the value of "TapButton1" should be a button number, not a boolean. Someone reported success with: <merge key="input.x11_options.TapButton1" type="string">1</merge> I suspect that the ctrl-alt-backspace thing (assuming ctrl, alt, and backspace are working for you otherwise) is that DontZap is ending up true, either by default or configuration. I think this has to be in xorg.conf, in ServerFlags, and is Option "DontZap" "false". Of course, I haven't gotten my keyboard to work right, and I haven't used the synaptics driver myself, so I could be entirely wrong. > <merge key="input.x11_options.ClickButton1" type="string">true</merge> > </match> > </match> > </device> > </deviceinfo> > ===================================================== > > Can you please help? > -- > Regards, > Mick >