Mouse

降低 Kubuntu 17.10 上的滑鼠靈敏度

  • January 29, 2018

我被迫從 17.04 升級到 Kubuntu 17.10。不幸的是,我的“Logitech USB 雷射滑鼠”再次變得超級敏感。過去,我曾在諸如此類的問題中使用說明來減少它,但不幸的"Device Accel Constant Deceleration"是,該選項不再可用:

➜  ~ xinput list-props 11
Device 'Logitech USB Laser Mouse':
       Device Enabled (145):   1
       Coordinate Transformation Matrix (147): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
       libinput Accel Speed (282):     0.000000
       libinput Accel Speed Default (283):     0.000000
       libinput Accel Profiles Available (284):        1, 1
       libinput Accel Profile Enabled (285):   1, 0
       libinput Accel Profile Enabled Default (286):   1, 0
       libinput Natural Scrolling Enabled (287):       0
       libinput Natural Scrolling Enabled Default (288):       0
       libinput Send Events Modes Available (267):     1, 0
       libinput Send Events Mode Enabled (268):        0, 0
       libinput Send Events Mode Enabled Default (269):        0, 0
       libinput Left Handed Enabled (289):     0
       libinput Left Handed Enabled Default (290):     0
       libinput Scroll Methods Available (291):        0, 0, 1
       libinput Scroll Method Enabled (292):   0, 0, 0
       libinput Scroll Method Enabled Default (293):   0, 0, 0
       libinput Button Scrolling Button (294): 2
       libinput Button Scrolling Button Default (295): 2
       libinput Middle Emulation Enabled (296):        0
       libinput Middle Emulation Enabled Default (297):        0
       Device Node (270):      "/dev/input/event5"
       Device Product ID (271):        1133, 49257
       libinput Drag Lock Buttons (298):       <no items>
       libinput Horizontal Scroll Enabled (299):       1

所以現在我正在尋找降低速度和加速度的替代方法,因為現在使用滑鼠非常令人沮喪。

libinput圖表建議您可以將其設置 libinput Accel Speed為 -1.0 以獲得 0.5 的減速度。

xinput set-prop 11 'libinput Accel Speed' -1

或者,您可以嘗試更改轉換矩陣以縮放 x 和 y 值。

xinput set-prop 11 'Coordinate Transformation Matrix' \
 0.5 0 0  0 0.5 0  0 0 1

引用自:https://unix.stackexchange.com/questions/420369