Peter da Silva eloquently asked, "Where are all the three button [optical] mice?" I agree with his exasperated sentiment. To clarify, what we're both talking about is mice with a full-size set of three buttons on top, so that there's a "real" middle mouse button instead of just a scrollwheel which you can awkwardly press down on.
Years ago, in the absence of good options, I actually ended up giving up and using a "modern" mouse with a middle scrollwheel. The Logitech m500s (and the m500 before it) has become the one that I've been relying on. I just retrained myself to use a thumb button as my "middle" button, which admittedly does work well enough for my own purposes. In an ideal world I'd still like that middle button back, though!
Current Options (as of May 2023)
The three-button mouse marketplace in mid-2023 actually seems a heck of a lot more promising than it did about five years ago! The Perfit Optical seemed to be about it for quite awhile, but it seems that other options have been bubbling around.
- Perfit Optical (or its wireless version). This one gives you the full three buttons, and additionally has a scrollwheel on the thumb. They're also designed to be ergonomically friendly, and while I've never had RSI problems from mouses, I'm sure that wouldn't hurt. I've been tempted by these for years! The main drawback is the price, which as of May 2023 is $75USD for the wired version. Given how quickly I can wear out mice, I've never been able to quite convince myself to go for it. I suppose compared to a lot of modern "gaming" mice, $75 actually isn't bad at all, though...
- ELECOM M-CAD01UBBK (or its wireless version, M-CAD01DBBK). This is marketed as a "CAD Mouse," so perhaps that's the better term to search for. It's very nicely affordable, though, at under $20USD for either version! I wouldn't actually want a mouse entirely without a scrollwheel, so this isn't the mouse for me, but it's nice to know that the format isn't entirely dead.
- Beatus 3-button Mouse. Another CAD mouse! This one seems to mostly ship out from Japan (and I think that ELECOM is technically Japanese too). I guess that's where the hub for these things must be? Anyway, it's rather pricey at $50USD, and who knows what the shipping times might be like, but some searching might yield closer suppliers. Like the ELECOM, there's no scrollwheel at all, so this one's probably not for me, alas.
Unavailable Options
Other options have come and gone over the years. I've pruned out the ones which don't even have "discontinued" store pages to look at, but this one, at least, remains online, a testament to What Once Was:
- Model DY651A Mouse from HP, at cdw.com. Discontinued in 2017.
Thumb-Button Mapping
I mentioned above that I eventually resigned myself to the realities of the market and got used to using a thumb button instead of a middle button. I wanted the thumb button to actually emit the "middle button" signal, rather than having to remap things on any random app which might ordinarily be making use of the middle button. I still use X.Org on Linux, so I accomplished it with the following little script:
MOUSE_INPUT=`xinput --list --id-only 'Logitech USB Laser Mouse'` if [[ -n "$MOUSE_INPUT" ]]; then xinput --set-button-map ${MOUSE_INPUT} 1 2 3 4 5 6 7 2 2 fi
I've got that in my ~/.xinitrc and also as a little shell script in my ~/bin so I can run it as needed, in case I end up swapping USB cables around or such. I'm sure there's some fancy udev or systemd way to have it do that automatically, but this works well enough for me.
The Logitech USB Laser Mouse string would have to be adapted to your specific device report string, if you wanted to use this. Just check the output of xinput --list to find the right string for your mouse. Presumably this won't work for anyone running Wayland instead of X.org.
Changelog
- Added links to ELECOM and Beatus CAD Mouses
- Some more cleanup, rearrangement, and dead-link pruning
- Added Linux/X.Org button mapping info
- Presumably just some formatting cleanup
- Original Rant