क्या 18.04 पर वायरलेस माउस मिडल बटन स्क्रॉलिंग को "धीमा" करने का एक तरीका है?


1

यहाँ माउस जानकारी है: वैसे भी गति कम करो कितनी तेजी से यह माउस व्हील के साथ स्क्रॉल करता है?

[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

मैं त्वरण और कोई भाग्य के साथ खिलवाड़ करने की कोशिश की है। विचार? उबंटू 18.04; logitech कहीं भी एमएक्स माउस

जवाबों:


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 

सुपर उपयोगकर्ता में आपका स्वागत है! क्या आपक लिए इसे विस्तार से कहना संभव है? शायद अपना उत्तर संपादित करें समझाने के लिए कि आप क्या वर्णन कर रहे हैं और क्यूं कर आप इस स्क्रिप्ट का सुझाव दे रहे हैं। धन्यवाद!
bertieb
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.