web-dev-qa-db-ja.com

Kubuntu 18.04でマウスアクセラレーションを無効にする方法

Kubuntu 18.04をインストールしたばかりで、マウスアクセラレーションを無効にしようとしました。次のコマンドで通常使用しているスクリプトファイルがありましたが、もう機能しません。

xinput set-prop 8 "Device Accel Profile" -1
xinput set-prop 8 "Device Accel Constant Deceleration" 4

Xinputの出力は次のとおりです。

Virtual core pointer                          id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ Razer Razer Abyssus                       id=8    [slave  pointer  (2)]
⎜   ↳ Gaming KB  Gaming KB                      id=10   [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)]
    ↳ Gaming KB  Gaming KB                      id=9    [slave  keyboard (3)]
    ↳ Gaming KB  Gaming KB                      id=11   [slave  keyboard (3)]

およびxinput -list-props

Device 'Razer Razer Abyssus':
        Device Enabled (139):   1
        Coordinate Transformation Matrix (141): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
        libinput Natural Scrolling Enabled (274):       0
        libinput Natural Scrolling Enabled Default (275):       0
        libinput Scroll Methods Available (276):        0, 0, 1
        libinput Scroll Method Enabled (277):   0, 0, 0
        libinput Scroll Method Enabled Default (278):   0, 0, 0
        libinput Button Scrolling Button (279): 2
        libinput Button Scrolling Button Default (280): 2
        libinput Middle Emulation Enabled (281):        0
        libinput Middle Emulation Enabled Default (282):        0
        libinput Accel Speed (283):     0.000000
        libinput Accel Speed Default (284):     0.000000
        libinput Accel Profiles Available (285):        1, 1
        libinput Accel Profile Enabled (286):   1, 0
        libinput Accel Profile Enabled Default (287):   1, 0
        libinput Left Handed Enabled (288):     0
        libinput Left Handed Enabled Default (289):     0
        libinput Send Events Modes Available (259):     1, 0
        libinput Send Events Mode Enabled (260):        0, 0
        libinput Send Events Mode Enabled Default (261):        0, 0
        Device Node (262):      "/dev/input/event2"
        Device Product ID (263):        5426, 66
        libinput Drag Lock Buttons (290):       <no items>
        libinput Horizontal Scroll Enabled (291):

Accel Profile Enabledを変更しようとしましたが、動作しません(何か間違ったことをしていない限り)。

何か案は?

2
Dergon

これはUbuntu上でうまくいきました。
加速速度を変更する必要があります。

xinput set-prop <mouse_id> <accel_speed_id> <number>

あなたの場合:

xinput set-prop 8 283 -0.5

注:例として-0.5を使用しましたが、必要な値を使用してください。
次の再起動またはログアウトまで続きます。 X11 confファイル(/usr/share/X11/xorg.conf.d)を永続的に使用したい場合は、オンラインでいくつかのチュートリアルがありますが、機能するようになりました。
別の方法は、コマンドを実行する起動スクリプトを作成することです。

1
Jubast

セットする

システム設定->入力デバイス->マウス->詳細設定->加速プロファイル

Noneに。

1
Echel0n