我想在启动时运行以下代码行:
xinput set-prop "Logitech USB-PS/2 Optical Mouse" "Coordinate Transformation Matrix" 3.000000, 0.000000, 0.000000, 0.000000, 3.000000, 0.000000, 0.000000, 0.000000, 1.000000 && xinput set-prop "Logitech USB-PS/2 Optical Mouse" 289 0
它不起作用。同时,我创建了一个启动应用程序来使用 imwheel 增加鼠标滚轮速度,它工作正常。
我已经尝试按照以下链接中的说明添加延迟,但它也不起作用 在启动时运行 xset 命令
当我手动运行该命令时,它可以起作用。
有任何想法吗?
答案1
我能够通过创建包含以下内容的50-mouse-speed.conf
文件来解决问题:/usr/share/X11/xorg.conf.d
Section "InputClass"
Identifier "Increase Logitech speed"
MatchProduct "Logitech USB-PS/2 Optical Mouse"
Option "TransformationMatrix" "2.00 0.00 0.00 0.00 2.00 0.00 0.00 0.00 2.00"
Option "AccelerationProfile" "-1"
Option "AccelerationScheme" "none"
EndSection