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


11

私のマウスはマウスアクセラレーションがあり、ubuntu 18.04では速すぎます。
での作成90-mouse.confxorg.conf.d機能しません。
そして、gnomeがxorgからwaylandに切り替わると、これらのxorg.confファイルは機能しなくなります。
Ubuntuでマウスアクセラレーションを無効にする別の方法はありますか?

回答:


19

Ubuntuはgnomeを使用し、gnomeはdconf(設定でいっぱいの「データベース」)を使用します。

方法:

  • dconf-editorをインストールする
    • sudo apt install dconf-editor 端末または
    • Dconf EditorUbuntuソフトウェアで検索
  • dconf-editorを開き、org-> gnome-> desktop-> peripherals->に移動します。mouse

これがマウスの設定です。

  • accel-profile- >必要な加速の種類を設定します
  • 速度 ->マウスの速度を設定します

accel-profileには次のオプションがあります

  • デフォルト
  • フラット別名。マウスアクセラレーションを無効にする
  • 適応

マウスアクセラレーションを無効にするには:

  • セットUse default valueoff
  • セットCustom valueflat

マウスの速度を変更するには:

  • に行く org/gnome/desktop/peripherals/mouse/speed
  • セットUse default valueoff
  • Custom valueを自分に合った数に変更します
    (この数は-1から1の間にすることができます)

これはLubuntuや他のフレーバーには影響しません。
カルマリウス

0

gsettingsコマンドを使用して端末から直接使用できる解決策を見つけました。

# displays what this setting represents
gsettings describe org.gnome.desktop.peripherals.mouse accel-profile

# displays the values it accepts as input
gsettings range org.gnome.desktop.peripherals.mouse accel-profile

# sets the accelleration profile to 'flat'
gsettings set org.gnome.desktop.peripherals.mouse accel-profile 'flat'

私がhttps://developer.gnome.org/GSettings/#gsettingsにつまずいたので、私はこの解決策に行きました。

dconfバックエンドストレージ自体を変更するには、dconfツールを使用します。ただし、gsettingsを優先して使用する必要があります。

この回答のコマンドでは、dconfではなくgsettingsを使用しています。


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.