[ltp] Little OT: Keyboard with UltraNav on Linux
Stephen Evanchik
linux-thinkpad@linux-thinkpad.org
Tue, 23 Aug 2005 11:06:23 -0400
On 8/23/05, Richard <rn214@hermes.cam.ac.uk> wrote:
> 3)Scroll. The trackpoint has 3 buttons in a line, (same as the newer (<2
> year old) thinkpads, but different from the 2+1 layout of the older ones=
.
> The 2+1 layout allowed you to use BOTH emulatewheel and emulate-scroll, t=
o
> obtain the full 3-button wheelmouse functionality. You can't do this with
> the 3-in-a line layout (because it is impractical to press button-1 and
> button-3 simultaneously with the same finger). Solutions might be
> a)tpscroll
> b)some clever hackery in xorg.conf
Here is my xorg.conf which had middle button scrolling and clicking. I
don't know if EmulateWheelClickToo is the correct option to allow
emulated wheel and middle button click.
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "Buttons" "10"
Option "ZAxisMapping" "4 5"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "EmulateWheelClickToo" "true"
EndSection
Stephen