Kubuntu 17.10でマウス感度を下げる

Kubuntu 17.10でマウス感度を下げる

17.04からKubuntu 17.10にアップグレードする必要がありました。これにより、「ロジクール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

だから今はマウスの使用が非常に苦しいので、速度と加速度を減らすための代替案を探しています。

ベストアンサー1

これライブラリ入力チャートによると、-1.0に設定すると、 libinput Accel Speed0.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

おすすめ記事