加快 Ubuntu 18.04 中的鼠标滚轮速度

加快 Ubuntu 18.04 中的鼠标滚轮速度

我发现,与可以选择鼠标滚轮速度的 Windows 相比,我必须滚动很多才能移动页面的文本。

Ubuntu 是否有类似的实用程序?如果有,我该如何访问它?

答案1

这个解决方案对我的 Ubuntu 18.04 有用:

http://www.webupd8.org/2015/12/how-to-change-mouse-scroll-wheel-speed.html

sudo apt-get install imwheel   
cat > ~/.imwheelrc
".*"
None,      Up,   Button4, 8
None,      Down, Button5, 8
Control_L, Up,   Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L,   Up,   Shift_L|Button4
Shift_L,   Down, Shift_L|Button5

8第二行和第三行末尾是加速度数字,3是默认的)

然后添加imwheel --kill --buttons "4 5"为启动应用程序:

启动截图

答案2

可能看起来很明显,但也有可能根据每个应用程序增加滚动,这可能就是您所需要的。

答案3

无法评论(50 个中只有 31 个需要声誉),所以我必须写这个作为答案:

imwheel适用于 Ubuntu 16.04,但上述答案破坏了 Ctrl + 鼠标滚轮缩放文本的功能,对于我们中的一些人来说,这是常用的功能。

解决方案是为两个 Ctrl 键提供它:

".+"
    @Exclude

".*chrome.*"
    @Priority=100
    None,      Up,   Button4, 3
    None,      Down, Button5, 3
    Shift_L,   Up,   Shift_L|Button4
    Shift_L,   Down, Shift_L|Button5
    Shift_R,   Up,   Shift_R|Button4
    Shift_R,   Down, Shift_r|Button5
    Control_L, Up,   Control_L|Button4
    Control_L, Down, Control_L|Button5
    Control_R, Up,   Control_R|Button4
    Control_R, Down, Control_R|Button5

Exclude部分是必需的,以便它不会影响其他应用程序(不知道为什么,但确实会)。

答案4

在我的 ThinkPad 上,使用 TrackPoint 更改滚动速度,灵感来自其他答案在这里,我做到了

xinput list

并发现 TrackPoint 的 ID 为 14,因此继续

xinput list-props 14

我看到的libinput Scrolling Pixel Distance。我使用

xinput set-prop 14 'libinput Scrolling Pixel Distance' x

其中x值可以是 10 到 50 之间的值(我试验过),值越低表示滚动速度越快。

相关内容