¿Hay alguna manera de "ralentizar" la velocidad del desplazamiento del botón central del mouse inalámbrico en 18.04?


1

Aquí está la información del mouse: de todos modos, para reducir la velocidad con la que se desplaza con la rueda del mouse.

[I]  ~/bin  xinput --list-props 12Device 'Logitech Anywhere MX':
    Device Enabled (141):   1
    Coordinate Transformation Matrix (143): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Natural Scrolling Enabled (276):       0
    libinput Natural Scrolling Enabled Default (277):       0
    libinput Scroll Methods Available (278):        0, 0, 1
    libinput Scroll Method Enabled (279):   0, 0, 0
    libinput Scroll Method Enabled Default (280):   0, 0, 0
    libinput Button Scrolling Button (281): 2
    libinput Button Scrolling Button Default (282): 2
    libinput Middle Emulation Enabled (283):        0
    libinput Middle Emulation Enabled Default (284):        0
    libinput Accel Speed (285):     -0.642086
    libinput Accel Speed Default (286):     0.000000
    libinput Accel Profiles Available (287):        0, 0
    libinput Accel Profile Enabled (288):   1, 0
    libinput Accel Profile Enabled Default (289):   1, 0
    libinput Left Handed Enabled (290):     0
    libinput Left Handed Enabled Default (291):     0
    libinput Send Events Modes Available (261):     1, 0
    libinput Send Events Mode Enabled (262):        0, 0
    libinput Send Events Mode Enabled Default (263):        0, 0
    Device Node (264):      "/dev/input/event5"
    Device Product ID (265):        1133, 4119
    libinput Drag Lock Buttons (292):       <no items>
    libinput Horizontal Scroll Enabled (293):       1

He intentado jugar con la aceleración y sin suerte. Ideas? ubuntu 18.04; mouse logitech en cualquier lugar mx

Respuestas:


0
#!/bin/bash
clear

NAME=Logitech

ID=`xinput list --short | grep -i $NAME | cut -f2 | cut -c4-| head -n1 `
echo $NAME Mouse ID is $ID

xinput set-prop $ID "Coordinate Transformation Matrix" 0.8, 0, 0, 0, 0.8, 0, 0, 0, 1

xinput --list-props $ID 

¡Bienvenido a Super User! ¿Podrías dar más detalles sobre esto? Quizás edite su respuesta para explicar lo que está describiendo y por qué sugiere este script. ¡Gracias!
bertieb
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.