-
-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mx Master 3 - side scroll wheel #25
Comments
I've done a little investigating and it looks like the mouse doesn't report scrolling events as button events, so there is no CID that you can use. I am not sure whether it is technically possible to remap the scroll wheels, however Xbindkeys can bind actions to X11 mouse buttons and the side scroll wheel reports its motion as X11 buttons 6 and 7, so you might be able to use that in the mean time. |
@dejdyla What's the use-case in mind? I would love to have this simply just for changing tabs in Chrome, but I am not sure how that is handled via Logitech Options on Windows/OSX |
That's also my use-case.
There are mappings per app (e.g. Chrome, Photoshop), which is more complex. I think that only 1 mapping for whole system (in our case: "TAB+CTRL" to scroll right and "TAB+SHIFT+CTRL" to scroll left) would be sufficient. |
@dejdyla @fourstepper it is possible to achieve this by using xbindkeys and xte. As better explained here, you can map CTRL + TAB to scroll up and CTRL + SHIFT + TAB to scroll down. All you have to do is create a # thumb wheel up => change tab using ctrl tab
"xte 'keydown Control_L' 'keydown Tab' 'keyup Tab' 'keyup Control_L'"
b:7
# thumb wheel down => change tab backwards using ctrl shift tab
"xte 'keydown Control_L' 'keydown Shift_L' 'keydown Tab' 'keyup Tab' 'keyup Shift_L' 'keyup Control_L'"
b:6 and then run |
@leo-ventura That is possible, but xbindkeys doesn't work under Wayland, does it? |
@leo-ventura Thank you. Is it perhaps possible to map buttons and the scroll thumb wheel per application as well? |
@dejdyla unfortunately, it doesn't. If you're using Sway, it may be possible to use their own keybinding technique. |
@fourstepper apparently you can use autokey to map per application, but I haven't used it yet. |
Hi,
I would like to map actions to side scroll wheel (located at left side of mx master 2 or 3). However I haven't found any cid, that represents this scroll wheel.
Is there any possibility to map actions to side scroll wheel on mx master 3?
Thanks in advance!
The text was updated successfully, but these errors were encountered: