LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
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


Reply
  Search this Thread
Old 02-11-2022, 07:29 PM   #1
gentisle
Member
 
Registered: May 2005
Location: Wisconsin, USA
Distribution: LinuxMint, OpenBSD
Posts: 271

Rep: Reputation: 10
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.
 
Old 02-11-2022, 08:34 PM   #2
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,352

Rep: Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382
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.
Old 02-12-2022, 07:39 AM   #3
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Very confusing.

We need to know 2 things first:
  • your Linux distro/version/desktop
  • your mouse maker/model
 
Old 02-12-2022, 12:57 PM   #4
obobskivich
Member
 
Registered: Jun 2020
Posts: 609

Rep: Reputation: Disabled
Quote:
Originally Posted by dugan View Post
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.
Old 02-12-2022, 01:00 PM   #5
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,352

Rep: Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382Reputation: 5382
Quote:
Originally Posted by ondoho View Post
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.
 
Old 02-12-2022, 03:39 PM   #6
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
^ 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.
 
Old 02-22-2022, 11:49 PM   #7
gentisle
Member
 
Registered: May 2005
Location: Wisconsin, USA
Distribution: LinuxMint, OpenBSD
Posts: 271

Original Poster
Rep: Reputation: 10
@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.
 
Old 02-23-2022, 03:00 AM   #8
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by gentisle View Post
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.
Old 02-23-2022, 08:19 AM   #9
boughtonp
Senior Member
 
Registered: Feb 2007
Location: UK
Distribution: Debian
Posts: 3,835

Rep: Reputation: 2700Reputation: 2700Reputation: 2700Reputation: 2700Reputation: 2700Reputation: 2700Reputation: 2700Reputation: 2700Reputation: 2700Reputation: 2700Reputation: 2700
Quote:
Originally Posted by gentisle View Post
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.
Old 02-27-2022, 03:37 PM   #10
gentisle
Member
 
Registered: May 2005
Location: Wisconsin, USA
Distribution: LinuxMint, OpenBSD
Posts: 271

Original Poster
Rep: Reputation: 10
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.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Error installing Marble: dpkg: dependency problems prevent configuration of marble v13duran Debian 4 03-20-2017 12:00 PM
Fine-tuning Logitech Marble Mouse Trackball CodeSplice Linux - Hardware 6 01-02-2009 01:30 AM
Logitech Marble Mouse and X dictatorofgoats Linux - General 1 05-20-2006 07:05 PM
links2 mouse support logitech trackman marble WindowsBurner Linux - Software 1 10-22-2005 10:24 AM
logitech marble mouse. please help....tried and tried byen Linux - Hardware 4 09-21-2005 06:40 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 09:56 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration