Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Jul 2004 19:08:38 +0400
From:      "Dmitriy Startsev" <metal_man@mail.ru>
To:        "Marc G. Fournier" <scrappy@hub.org>
Cc:        freebsd-multimedia@freebsd.org
Subject:   Re: Logitech Trackman - middle button/wheel
Message-ID:  <000401c468eb$522e5d30$551914ac@METALLER>
References:  <20040712154424.E20939@ganymede.hub.org> <20040712190031.GO64690@camelot.theinternet.com.au> <000401c4684c$5ac17e90$1d0f14ac@METALLER> <20040713111036.I867@ganymede.hub.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Hello, Marc!
You wrote to "Dmitriy Startsev" <metal_man@mail.ru> 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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?000401c468eb$522e5d30$551914ac>