GNOME 3でマウスのスクロール速度を上げて、再起動後も同様に動作させるにはどうすればよいですか?
現在、スクロールごとに約3行を取得していますが、これを増やしたいと思います。
いくつかのガイドに従ってみましたが、14.04では動作しません
TIA!
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(高速)までの値を使用できます。
Imwheelを試しましたか?便利なスクリプトがあります。シンプルなGUIでimwheelの構成を設定できます。また、起動時にimwheelを起動するように設定できます。 (以前にimwheelを試したことがある場合は、スクリプトを使用する前に古い構成を削除することをお勧めします。rm ~/.imwheelrc
で削除できます)
Sudo apt-get install 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
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