苹果magic mouse的滚动速度怎么设置?
我只发现了移动速度。
答案1
目前唯一的方法是直接在 hid_magicmouse 驱动程序中进行设置。
测试运行:
sudo rmmod hid_magicmouse
# scroll-speed value from 0 (slow) to 63 (fast):
sudo modprobe hid_magicmouse scroll-speed=45 scroll-acceleration=1
对于永久设置,请将以下内容放入 /etc/modprobe.d/magicmouse.conf:
options hid_magicmouse scroll-speed=45 scroll-acceleration=1
答案2
您也可以通过/sys内核接口写入参数:
$ ls /sys/module/hid_magicmouse/parameters/
emulate_3button emulate_scroll_wheel report_undeciphered scroll_acceleration scroll_speed
$ cat /sys/module/hid_magicmouse/parameters/scroll_speed
45
$ echo N | sudo tee /sys/module/hid_magicmouse/parameters/scroll_acceleration
N
你可以在这里查看源代码:http://lxr.free-electrons.com/source/drivers/hid/hid-magicmouse.c