Logitech Master 2S Arch Linux: Difference between revisions

From wikiluntti
Line 39: Line 39:


<pre>
<pre>
xinput list  
> xinput list
⎡ Virtual core pointer                    id=2 [master pointer  (3)]
⎜  ↳ Virtual core XTEST pointer              id=4 [slave  pointer  (2)]
⎜  ↳ Logitech MX Master 2S                  id=9 [slave  pointer  (2)]
⎣ Virtual core keyboard                  id=3 [master keyboard (2)]
    ↳ Virtual core XTEST keyboard            id=5 [slave  keyboard (3)]
    ↳ Power Button                            id=6 [slave  keyboard (3)]
    ↳ Power Button                            id=7 [slave  keyboard (3)]
    ↳ Sleep Button                            id=8 [slave  keyboard (3)]
    ↳ Logitech MX Master 2S                  id=13 [slave  keyboard (3)]
    ↳ Eee PC WMI hotkeys                      id=10 [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard            id=11 [slave  keyboard (3)]
    ↳ LogiOps Virtual Input                  id=12 [slave  keyboard (3)]
</pre>
</pre>


<pre>
<pre>
xinput list-props 9
 
</pre>
</pre>


Line 49: Line 61:
xinput set-prop 9 'Device Accel Constant Deceleration' 3
xinput set-prop 9 'Device Accel Constant Deceleration' 3
</pre>
</pre>


== References ==
== References ==

Revision as of 19:44, 15 August 2023

Introduction

Set the vertical scroll (Wheel) speed and set thumb wheel to be arrow keys left right.

Logid

Install following the instructions, but cannot find the mouse:

sudo logid -v
[INFO] Config file does not exist, using empty config.
[DEBUG] Unsupported device /dev/hidraw3 ignored
[DEBUG] Ignoring virtual node on /dev/hidraw1
[INFO] Detected receiver at /dev/hidraw0

After changing the configuration file (/etc/logid.cfg), you need to run

sudo systemctl restart logid

for the changes to be taken into account.


https://wiki.archlinux.org/title/Logitech_MX_Master

https://danishshakeel.me/configure-logitech-mx-master-3-on-linux-logiops/

Pipeer

Solaar

Finds the mouse but no settings for vertical scroll speed.

Remove the USB dongle and plug it back, after switching smooth scrolling option in Solaar.

Resetmsmice https://sourceforge.net/projects/resetmsmice/

Imwheel


https://pwr-solaar.github.io/Solaar/devices

XInput

> xinput list
⎡ Virtual core pointer                    	id=2	[master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer              	id=4	[slave  pointer  (2)]
⎜   ↳ Logitech MX Master 2S                   	id=9	[slave  pointer  (2)]
⎣ Virtual core keyboard                   	id=3	[master keyboard (2)]
    ↳ Virtual core XTEST keyboard             	id=5	[slave  keyboard (3)]
    ↳ Power Button                            	id=6	[slave  keyboard (3)]
    ↳ Power Button                            	id=7	[slave  keyboard (3)]
    ↳ Sleep Button                            	id=8	[slave  keyboard (3)]
    ↳ Logitech MX Master 2S                   	id=13	[slave  keyboard (3)]
    ↳ Eee PC WMI hotkeys                      	id=10	[slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard            	id=11	[slave  keyboard (3)]
    ↳ LogiOps Virtual Input                   	id=12	[slave  keyboard (3)]

xinput set-prop 9 'Device Accel Constant Deceleration' 3

References