Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux? |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
![Reply](https://www.linuxquestions.org/questions/images/buttons/reply.gif) |
02-11-2022, 07:29 PM
|
#1
|
Member
Registered: May 2005
Location: Wisconsin, USA
Distribution: LinuxMint, OpenBSD
Posts: 271
Rep:
|
How To Speed Up The Logitech Marble Mouse
Previously, I had posted about how to get new mouse drivers written for MacOS, BSD, Linux, to get this mouse to work the way it does in Windows (which is lightning fast). That is unnecessary; here is a simple script to fix it. I set mine to 11, and it is much more responsive. Thank you. I imagine BSD and Linux will allow something similar. Once, I woke up and realized the *nix products are very, higly configurable, and found some spare time, I searched and found my answer. Hope others can benefit from this, even if they have a different mouse than the Marble Mouse. The code simply displays the current setting, changes to the new one input by the user at the command line ($1, or in DOS/Windows speak, %1), and then sets and re-displays the new setting.
Code:
#!/bin/bash
# Used to speed up the mouse in MacOS.
echo The current mouse scaling speed is:
defaults read -g com.apple.mouse.scaling
echo ===================================
echo The new mouse scaling speed is:
defaults write -g com.apple.mouse.scaling $1
defaults read -g com.apple.mouse.scaling
echo Please reboot for the new setting to take effect.
Then there are some free and otherwise software:
Software that can adjust the mouse the way a person likes (better than System Preferences)
http://triq.net/mac/mouse-acceleration
BetterTouchTool
https://folivora.ai/
brew install --cask steermouse
brew install --cask smoothscroll
Logitech has this:
https://www.logitech.com/en-us/software/options.html#
https://github.com/linearmouse/linearmouse
This page has some helpful info:
https://apple.stackexchange.com/ques...in-high-sierra
I couldn't find the software before, however, once I used
Quote:
defaults write -g com.apple.mouse.scaling
|
as my search phrase, all kinds of wonderful things popped up. Hope this is findable for those who like very fast mice.
|
|
|
02-11-2022, 08:34 PM
|
#2
|
LQ Guru
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,352
|
Uh, is any of the above expected to work on Linux?
I have an MX Anywhere 3, and I used a program called Solaar to bump the "Sensitivity (DPI)" setting to 1550. Life is good.
|
|
1 members found this post helpful.
|
02-12-2022, 07:39 AM
|
#3
|
LQ Addict
Registered: Dec 2013
Posts: 19,872
|
Very confusing.
We need to know 2 things first:
- your Linux distro/version/desktop
- your mouse maker/model
|
|
|
02-12-2022, 12:57 PM
|
#4
|
Member
Registered: Jun 2020
Posts: 609
Rep: ![Reputation: Disabled](https://www.linuxquestions.org/questions/images/reputation/reputation_off.gif)
|
Quote:
Originally Posted by dugan
Uh, is any of the above expected to work on Linux?
I have an MX Anywhere 3, and I used a program called Solaar to bump the "Sensitivity (DPI)" setting to 1550. Life is good.
|
Likely not 'directly' but the concept still applies. What tips this is the tunable "com.apple.*" which implies its probably from the non-FOSS components of OS X (or at least the OS X-specific components). On Linux, mouse-dpi-tool can be used to adjust (and calibrate) mice via cli (and can be done on any mouse), which can lead to 'faster' (or 'slower') mice by playing with the values. In GNOME there is also a 'mouse speed' setting that may be of some use. In OS X itself I'm betting the setting shown here via scripts, is tunable via GUI settings as well (it may be in 'Accessibility').
The provided code would work if adapted for the appropriate OS and underlying libraries, since it is just bash, which OS X (and Linux, and BSD) can work with.
|
|
1 members found this post helpful.
|
02-12-2022, 01:00 PM
|
#5
|
LQ Guru
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,352
|
Quote:
Originally Posted by ondoho
Very confusing.
We need to know 2 things first:
- your Linux distro/version/desktop
- your mouse maker/model
|
Oh come on.
Exactly which part of "Logitech Marble Mouse" and "Logitech Anywhere MX 3" were confusing, let alone "very confusing", regarding the mouse maker/model?
The quality of the responses on this forum is starting to hit rock bottom. Even from the regulars.
* adds ondoho to permanent ignore list
Last edited by dugan; 02-12-2022 at 01:06 PM.
|
|
|
02-12-2022, 03:39 PM
|
#6
|
LQ Addict
Registered: Dec 2013
Posts: 19,872
|
^ I was refering to OP's first post.
The mention of various OSs that apparently all are not OP's current OS, and not mentioning their current OS at all - yes, confusing.
Re-reading it, it appears that OP isn't even asking a question here, just giving MacOS centric advice that won't work on Linux, in a Linux subforum.
So yes, very confusing.
Additionally I don't know if "Marble Mouse" is descriptive or refers to a precise Model. I know what sort of mouse they're talking about though.
Anyhow, help is not needed, so please disregard my previous (and this) post.
|
|
|
02-22-2022, 11:49 PM
|
#7
|
Member
Registered: May 2005
Location: Wisconsin, USA
Distribution: LinuxMint, OpenBSD
Posts: 271
Original Poster
Rep:
|
@dugan and @obobskivich
Good things to know. Perhaps I should have been more clear: I was posting the info to answer my own question, and to answer similar questions for anyone looking to speed up their mouse. And as anyone who can read knows, this forum includes the MacOS as well as Linux and BSD. Thanks to all.
|
|
|
02-23-2022, 03:00 AM
|
#8
|
LQ Addict
Registered: Dec 2013
Posts: 19,872
|
Quote:
Originally Posted by gentisle
And as anyone who can read knows, this forum includes the MacOS as well as Linux and BSD.
|
Not this subforum though.
I don't want to nitpick, but I do not appreciate the jab. I think I've been polite enough.
|
|
1 members found this post helpful.
|
02-23-2022, 08:19 AM
|
#9
|
Senior Member
Registered: Feb 2007
Location: UK
Distribution: Debian
Posts: 3,835
|
Quote:
Originally Posted by gentisle
And as anyone who can read knows, this forum includes the MacOS as well as Linux and BSD. Thanks to all.
|
This is Linux Questions, and the subforum your thread is in is "Linux - Hardware", inside the "Linux Forums" section. Nowhere does it say this is intended for MacOS or BSD threads.
Such threads are welcome elsewhere, outside of the Linux-specific forums: specifically, under "Other *NIX Forums" there is a *BSD forum, and for MacOS threads there is " Other *NIX". (The description still uses the term "OS X" which is/was a common alias of MacOS.)
However, if you are not asking a question but simply sharing something that worked for you, LQ blogs is a place to do that.
|
|
2 members found this post helpful.
|
02-27-2022, 03:37 PM
|
#10
|
Member
Registered: May 2005
Location: Wisconsin, USA
Distribution: LinuxMint, OpenBSD
Posts: 271
Original Poster
Rep:
|
If only I could read as well as you guys, I might have become a system administrator. But alas, no teacher ever figured out why I couldn't read as well as other children, so I have suffered all my life. I'll try to be more careful next time.
|
|
|
All times are GMT -5. The time now is 09:56 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|