You are not logged in.
This is a great mouse. Thanks to those that recommended in it previously here. I wrote up my thoughts here for any interested.
Everything works on the mouse except the scroll-left and right of the scroll wheel. Anyone had any experience with this, all I have been able to find is an old post about editing xorg.conf that didn't work.
Last edited by Gen2ly (2010-01-10 08:43:03)
Setting Up a Scripting Environment | Proud donor to wikipedia - link
Offline
Offline
Same mouse, very nice I agree!
Side-scroll is working in Firefox. Some apps don't like it, though.
Offline
They do register as events, so it is easy to map them. I was wondering if there was a global X mapping for left and right scrolling, does anyone know this?
Offline
Yeah mikesd, buttons 6 and 7 do definitely scroll left and right. I wonder if buttons 6 and 7 are universal for this. From what I've looked up, it appears that they are. Perhaps 'evdev' is putting them in the wrong order... it's the only thing I can think of.
Hmm... interesting Ranguvar that the G9 tilt wheel works for you without any additional configuration. The G9 has been around for awhile. Perhaps, a revision to the mouse but Logitech is still using the same name?? I ended up remapping my horizontal scrolls and it appears to be working in all applications (haven't tried them all though ).
The buttons were originally mapped:
Left click - button 1
Right click - button 3
Middle click - button 2
Scroll up - button 4
Scroll down - button 5
Left scroll - button 11
Right scroll - button 12
Back - button 8
Forward - button 9
Xorg isn't able to remap the buttons I've discovered looks like, however using xmodmap makes it possible:
xmodmap -e "pointer = 1 2 3 4 5 11 12 8 9 10 6 7"
Then to load on boot put it in a "~/.Xmodmap" file:
echo "pointer = 1 2 3 4 5 11 12 8 9 10 6 7" > ~/.Xmodmap
!!!
xinput may be the way to do this in the future (I'm not sure):
xinput list
xinput set-button-map "<device name>" 1 2 3 4 5 11 12 8 9 10 6 7
Then a hal fdi needs to be created (which doesn't look fun ).
Anyways got it working now. Thanks for the help guys!
They do register as events, so it is easy to map them. I was wondering if there was a global X mapping for left and right scrolling, does anyone know this?
@Vintendo
I believe 'Button 1', 'Button 2'... are the X mappings, at least according to xev. Xev shows the name (XF86Calculator for instance) for other keys so I'm thinking this is the same for mouse buttons as well.
Last edited by Gen2ly (2010-01-09 02:40:39)
Setting Up a Scripting Environment | Proud donor to wikipedia - link
Offline
Yeah mikesd, buttons 6 and 7 do definitely scroll left and right. I wonder if buttons 6 and 7 are universal for this. From what I've looked up, it appears that they are. Perhaps 'evdev' is putting them in the wrong order... it's the only thing I can think of.
I always thought the order of the buttons was dictated by the hardware. I'm not sure if there is a standard as to button layout once you get above the usual 5 (3 buttons + up/down scroll) or if hardware oems can do what they want.
Offline
Always had a three-button mouse so this is new to me too. Probably does have to what the hardware specifies and then evdev reading from that, be real nice if it was standardised though .
Edit: Oop, marking solved.
Setting Up a Scripting Environment | Proud donor to wikipedia - link
Offline