web-dev-qa-db-ja.com

GNOME 3でマウスのスクロール速度を上げるにはどうすればよいですか?

GNOME 3でマウスのスクロール速度を上げて、再起動後も同様に動作させるにはどうすればよいですか?

現在、スクロールごとに約3行を取得していますが、これを増やしたいと思います。

いくつかのガイドに従ってみましたが、14.04では動作しません

TIA!

2
AsianXL

imwheelを試すこともできますが、それ以上の開発はないようです。

でインストール

Sudo apt-get install imwheel

構成を作成します

nano ~/.imwheelrc

そして、以下を記入してください

".*"
None,      Up,   Button4, 100
None,      Down, Button5, 100
Control_L, Up,   Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L,   Up,   Shift_L|Button4
Shift_L,   Down, Shift_L|Button5

次の2行で速度を制御します。

None,      Up,   Button4, 100
None,      Down, Button5, 100

0(低速)から100(高速)までの値を使用できます。

ソース

3
A.B.

Imwheelを試しましたか?便利なスクリプトがあります。シンプルなGUIでimwheelの構成を設定できます。また、起動時にimwheelを起動するように設定できます。 (以前にimwheelを試したことがある場合は、スクリプトを使用する前に古い構成を削除することをお勧めします。rm ~/.imwheelrcで削除できます)

  1. Imwheelを取得:Sudo apt-get install imwheel
  2. スクリプトを取得して、お気に入りのテキストエディターで保存し、mousewheel.shという名前を付けます(以下に示します)。
  3. スクリプトを実行可能としてマークします(.shファイルを右クリック->プロパティ->許可:「プログラムとしてのファイルの実行を許可」にチェックマークを付けます)
  4. オプションで、スクリプトのショートカットを作成できます
  5. スクリプトを実行して、好みに合わせて速度を調整するだけです
  6. 起動時に起動時に起動するようにimwheelを設定するか、コマンドimwheel(およびkillall imwheelを使用して端末から手動で起動して停止することができます)

脚本:

#!/bin/bash
# Version 0.1 Tuesday, 07 May 2013
# Comments and complaints http://www.nicknorton.net
# GUI for mouse wheel speed using imwheel in Gnome
# imwheel needs to be installed for this script to work
# Sudo apt-get install imwheel
# Pretty much hard wired to only use a mouse with
# left, right and wheel in the middle.
# If you have a mouse with complications or special needs,
# use the command xev to find what your wheel does.
#
### see if imwheel config exists, if not create it ###
if [ ! -f ~/.imwheelrc ]
then

cat >~/.imwheelrc<<EOF
".*"
None,      Up,   Button4, 1
None,      Down, Button5, 1
Control_L, Up,   Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L,   Up,   Shift_L|Button4
Shift_L,   Down, Shift_L|Button5
EOF

fi
##########################################################

CURRENT_VALUE=$(awk -F 'Button4,' '{print $2}' ~/.imwheelrc)

NEW_VALUE=$(zenity --scale --window-icon=info --ok-label=Apply --title="Wheelies" --text "Mouse wheel speed:" --min-value=1 --max-value=100 --value="$CURRENT_VALUE" --step 1)

if [ "$NEW_VALUE" == "" ];
then exit 0
fi

sed -i "s/\($TARGET_KEY *Button4, *\).*/\1$NEW_VALUE/" ~/.imwheelrc # find the string Button4, and write new value.
sed -i "s/\($TARGET_KEY *Button5, *\).*/\1$NEW_VALUE/" ~/.imwheelrc # find the string Button5, and write new value.

cat ~/.imwheelrc
imwheel -kill

ソース: https://www.youtube.com/watch?v=i-acwJs9UfY

2
wayzhc

OK、Gnome 3はおもちゃと設定をいたるところに残しています。どういうわけか、マウスにコーヒーをこぼしたときに私の設定が変更され、「愚かな設定」でも「高度な愚かな設定」でも修正されませんでした。私はデフォルトを復元したと思います:

これを修正した方法は次のとおりです。

$ gnome-control-center

Mouse & Touchpad -> Mouse -> Mouse Speed (max)
Mouse & Touchpad -> Mouse -> Natural Scrolling (off)


$ gnome-tweaks

(install it if you don't have it: Sudo apt install gnome-Tweak-tool)

- Menu -> Reset to Defaults
- Change my theme back
- Keyboard & Mouse -> Alleleration Profile -> Adaptive

0
Michael Cole