更改 Zowie 游戏鼠标的灵敏度

更改 Zowie 游戏鼠标的灵敏度

我正在尝试更改 Zowie 游戏鼠标的灵敏度。设置中的滑块没有任何效果。

使用 xinput,结果为

xinput list-props 8

Device 'Kingsis Peripherals ZOWIE Gaming mouse':
Device Enabled (155):   1
Coordinate Transformation Matrix (157): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Natural Scrolling Enabled (291):   0
libinput Natural Scrolling Enabled Default (292):   0
libinput Scroll Methods Available (293):    0, 0, 1
libinput Scroll Method Enabled (294):   0, 0, 0
libinput Scroll Method Enabled Default (295):   0, 0, 0
libinput Button Scrolling Button (296): 2
libinput Button Scrolling Button Default (297): 2
libinput Middle Emulation Enabled (298):    1
libinput Middle Emulation Enabled Default (299):    0
libinput Accel Speed (300): 0.000000
libinput Accel Speed Default (301): 0.000000
libinput Accel Profiles Available (302):    1, 1
libinput Accel Profile Enabled (303):   1, 0
libinput Accel Profile Enabled Default (304):   1, 0
libinput Left Handed Enabled (305): 0
libinput Left Handed Enabled Default (306): 0
libinput Send Events Modes Available (276): 1, 0
libinput Send Events Mode Enabled (277):    0, 0
libinput Send Events Mode Enabled Default (278):    0, 0
Device Node (279):  "/dev/input/event3"
Device Product ID (280):    6899, 1
libinput Drag Lock Buttons (307):   <no items>
libinput Horizontal Scroll Enabled (308):   1

由于没有通常的减速属性,我不知道该怎么做。

有什么想法或其他方法吗?

答案1

你可以尝试:

 xinput --set-prop pointer:"Kingsis Peripherals ZOWIE Gaming mouse"  "libinput Accel Speed" -1

为了减慢速度,您也可以尝试 -0.5 等。负数表示减慢速度,正数表示加快速度,范围从 -1 到 1。

如果这没有帮助(或者没有达到您想要的效果),您还可以尝试:

xinput --set-prop pointer:"Kingsis Peripherals ZOWIE Gaming mouse" "Coordinate Transformation Matrix" 1, 0, 0, 0, 1, 0, 0, 0, 10

将末尾的 10 改为 0.1 到 20 左右(我实际上不知道范围是多少,您可以输入 100 它就可以工作,当用鼠标在整个桌面上缩放时指针的移动非常小),大于 1 则速度更慢,负数则方向反转。

您可能已经猜到了,我还有一只没有减速属性的鼠标……

相关内容