4

I've been using Logitech MX master 2s with Ubuntu 18.04 for like a week now and this mouse comes with 2 settings for scrolling one is a click to click scroll like a normal mouse and other is a hyperfast free scroll. if you scroll fast enough the click to click scroll turns to hyper-fast scrolling, which is a really good feature on Windows or Mac you can control the sensitivity of when Click to Click scrolling gets converted to hyperfast free scrolling. I think this is also possible in Ubuntu (or lets say Linux) because it's been demoed on Arch Wiki.

on Arch Wiki it's written and I quote:

Arch Wiki Text

But Solaar on Ubuntu doesn't have that slider

Solaar on Ubuntu

also, note that Solaar hasn't been updated since 2014-04-20. do you have any other way to solve this issue?

2 Answers2

4

first uninstall your current solaar version, then try this:

git clone https://github.com/pwr/Solaar.git
cd Solaar

Update: The following is unnecessary now, as the pull request has been merged:


unfortunately the support for the MX Master 2s seems not to be in there yet, but there's a pull request with the support, so you could do: git pull origin pull/399/head

to download it into your local repository. If it opens an editor just hit save and exit it.


Continue here

Then you can run

sudo python setup.py install
/usr/local/bin/solaar

Solaar

Catscrash
  • 176
3

For those who want to config the smart-shift for MX MASTER 2S (which can't be configured via the UI), Follow Catscrash's solution, then go to Solaar's CLI instead of the GUI, and run the following command:

/usr/local/bin/sudo solaar config 1 smart-shift 30
  • 1 is your device number (run solaar show to see a device list.)

  • 30 is a number between 0-50 (0 is total free scroll).

Zanna
  • 72,312
Alonzzo2
  • 141