Answers:
此解决方案适用于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"
为启动应用程序:
xev
找出你的鼠标的实际按钮号码轮子呢?
无法发表评论(50名中只有31名需要信誉),因此我必须将其写为答案:
imwheel
适用于Ubuntu 16.04,但是以上答案破坏了Ctrl + Mousewheel缩放文本的功能,对于我们中的某些人来说,这是常用的功能。
解决方案是为两个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
部分是必需的,这样它才不会影响其他应用程序(不知道为什么会,但确实如此)。