私のマウスはマウスアクセラレーションがあり、ubuntu 18.04では速すぎます。
での作成90-mouse.conf
はxorg.conf.d
機能しません。
そして、gnomeがxorgからwaylandに切り替わると、これらのxorg.conf
ファイルは機能しなくなります。
Ubuntuでマウスアクセラレーションを無効にする別の方法はありますか?
私のマウスはマウスアクセラレーションがあり、ubuntu 18.04では速すぎます。
での作成90-mouse.conf
はxorg.conf.d
機能しません。
そして、gnomeがxorgからwaylandに切り替わると、これらのxorg.conf
ファイルは機能しなくなります。
Ubuntuでマウスアクセラレーションを無効にする別の方法はありますか?
回答:
Ubuntuはgnomeを使用し、gnomeはdconf(設定でいっぱいの「データベース」)を使用します。
方法:
sudo apt install dconf-editor
端末またはDconf Editor
Ubuntuソフトウェアで検索org
-> gnome
-> desktop
-> peripherals
->に移動します。mouse
これがマウスの設定です。
accel-profileには次のオプションがあります。
マウスアクセラレーションを無効にするには:
Use default value
にoff
Custom value
にflat
マウスの速度を変更するには:
org/gnome/desktop/peripherals/mouse/speed
Use default value
にoff
Custom value
を自分に合った数に変更します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を使用しています。
これは私を助けませんでした(多分MATEのため)、ここに別の解決策があります:
グラフィカル設定は統一されています。加速と感度の両方を中央に移動して、[閉じる]をクリックします。マウスの設定を再度開き、必要に応じて加速と感度を調整します。
リファレンス:https : //ubuntu-mate.community/t/mouse-too-fast-in-18-04-again-known-methods-stopped-working/18805