如何增加 GNOME 3 中的鼠标滚动速度?

如何增加 GNOME 3 中的鼠标滚动速度?

如何才能提高 GNOME 3 中的鼠标滚动速度并确保它在重启后也能正常工作?

目前每卷大约有 3 行,我想增加这个数字。

我尝试过按照一些指南操作,但它们不适用于 14.04

短暂性失眠!

答案1

你可以尝试艾姆韦尔,但似乎并无进一步进展。

使用安装

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

你可以用以下两行来控制速度:

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

您可以使用 0(慢)至 100(快)之间的值。

来源

答案2

您尝试过 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

答案3

好吧,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

相关内容