根据我经过数小时的混乱研究后阅读的各种内容,我制作了这个配置文件,使其可执行,并将其设置为在启动后 5 秒运行:
#!/bin/bash
#wait for the desktop to settle
sleep 5
# speed up mouse
xset m 198 180
# turn off mouse acceleration
xinput set-prop 10 259 -1
device=" USB OPTICAL MOUSE"
resolution_percent=300
xinput set-prop "$device" "Device Accel Profile" 4
xinput set-ptr-feedback "$device" 0 "$resolution_percent" 150
xinput set-prop "$device" "Device Accel Constant Deceleration" 1
# mouse wheel speed
imwheel
但是,鼠标指针的速度仍然不如我想要的快,而且有一些加速。我希望我的手和指针之间保持恒定的 1:1 映射,因此不需要加速。要更改什么?