From owner-freebsd-multimedia@FreeBSD.ORG Tue Jul 13 15:08:53 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 363DA16A4CE for ; Tue, 13 Jul 2004 15:08:53 +0000 (GMT) Received: from mx1.mail.ru (mx1.mail.ru [194.67.23.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5CEC43D48 for ; Tue, 13 Jul 2004 15:08:52 +0000 (GMT) (envelope-from metal_man@mail.ru) Received: from [217.118.66.254] (port=56010 helo=METALLER) by mx1.mail.ru with smtp id 1BkOtg-0008Oo-00; Tue, 13 Jul 2004 19:08:46 +0400 Message-ID: <000401c468eb$522e5d30$551914ac@METALLER> From: "Dmitriy Startsev" To: "Marc G. Fournier" References: <20040712154424.E20939@ganymede.hub.org> <20040712190031.GO64690@camelot.theinternet.com.au> <000401c4684c$5ac17e90$1d0f14ac@METALLER> <20040713111036.I867@ganymede.hub.org> Date: Tue, 13 Jul 2004 19:08:38 +0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 FL-Build: Fidolook 2004 (HL) 6.0.2600.32000 - 17/4/2004 06:54:21 cc: freebsd-multimedia@freebsd.org Subject: Re: Logitech Trackman - middle button/wheel X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jul 2004 15:08:53 -0000 Hello, Marc! You wrote to "Dmitriy Startsev" on Tue, 13 Jul 2004 11:12:02 -0300 (ADT): MGF> Is there something in KDE that I have to do to enable this as well? MGF> I've just restarted my X/KDE with: MGF> Section "InputDevice" MGF> Identifier "Mouse0" MGF> Driver "mouse" MGF> Option "Protocol" "PS/2" MGF> Option "Device" "/dev/psm0" MGF> Option "Buttons" "5" MGF> Option "ZAxisMapping" "4 5" MGF> EndSection MGF> And it didn't make a difference ... I can use it as a third button, MGF> but with my focus on something like Mozilla, it doesn't scroll the MGF> page up/down ... If you are using "/dev/psm0" device here, make sure moused is disabled in /etc/rc.conf. Or you can try this (works for me, note that "ZAxisMapping" option is commented out): /etc/rc.conf: ... moused_enable="YES" moused_port="/dev/psm0" moused_type="auto" moused_flags="-z 4 5" ... /etc/X11/XF86Config: ... Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "Auto" Option "Device" "/dev/sysmouse" Option "Buttons" "5" # Option "ZAxisMapping" "4 5" EndSection ... With best regards, Dmitriy Startsev.