博文

目前显示的是 十月, 2019的博文

adjust the mouse scroll speed in Ubuntu?

http://www.nicknorton.net/?q=node/10 sudo apt-get install imwheel touch a .sh file with content: #!/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}' ~