Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 Sep 2005 09:34:23 +0200
From:      Marcin Jessa <lists@yazzy.org>
To:        Jochen Gensch <incmc@gmx.de>
Cc:        freebsd-mobile@freebsd.org
Subject:   Re: Thinkpad middle button for scrolling?
Message-ID:  <20050921093423.6e9cd6e8.lists@yazzy.org>
In-Reply-To: <43309474.10104@gmx.de>
References:  <43309474.10104@gmx.de>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 21 Sep 2005 01:00:04 +0200
Jochen Gensch <incmc@gmx.de> wrote:

> Hi,
> 
> is there any way to configure the middle button of a thinpad for
> scrolling under X? Under Windows I can hold it down and scroll a page up
> / down by moving the track point. This would be nice to habe under
> FreeBSD as well :-).
> 
Sure,  this is what you'd need then in your xorg.conf's mouse section:

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "Auto"
        Option      "Device" "/dev/sysmouse"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "80"
        Option      "EmulateWheel" "on"
        Option      "EmulateWheelButton" "2"
        Option      "ZAxisMapping" "4 5"
        Option      "Buttons" "3"
        Option      "CorePointer"
EndSection

Works great on my Thinkpad R50e.

Cheers,
Marcin



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050921093423.6e9cd6e8.lists>