我的问题是鼠标指针速度太高,GUI调整没有效果。我找到了有关使用 xinput 解决此问题的建议。这是我发现的:
nate@Cortana-Mint ~ $ xinput --list --short
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ USB OPTICAL MOUSE id=12 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Power Button id=8 [slave keyboard (3)]
↳ USB Keyboard id=9 [slave keyboard (3)]
↳ USB Keyboard id=10 [slave keyboard (3)]
↳ gspca_zc3xx id=11 [slave keyboard (3)]
nate@Cortana-Mint ~ $ xinput --list-props 12
Device 'USB OPTICAL MOUSE':
Device Enabled (133): 1
Coordinate Transformation Matrix (135): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Accel Speed (269): 0.000000
libinput Accel Speed Default (270): 0.000000
libinput Accel Profiles Available (271): 1, 1
libinput Accel Profile Enabled (272): 1, 0
libinput Accel Profile Enabled Default (273): 1, 0
libinput Natural Scrolling Enabled (274): 0
libinput Natural Scrolling Enabled Default (275): 0
libinput Send Events Modes Available (253): 1, 0
libinput Send Events Mode Enabled (254): 0, 0
libinput Send Events Mode Enabled Default (255): 0, 0
libinput Left Handed Enabled (276): 0
libinput Left Handed Enabled Default (277): 0
libinput Scroll Methods Available (278): 0, 0, 1
libinput Scroll Method Enabled (279): 0, 0, 0
libinput Scroll Method Enabled Default (280): 0, 0, 0
libinput Button Scrolling Button (281): 2
libinput Button Scrolling Button Default (282): 274
libinput Middle Emulation Enabled (283): 1
libinput Middle Emulation Enabled Default (284): 0
Device Node (256): "/dev/input/event4"
Device Product ID (257): 2362, 9505
libinput Drag Lock Buttons (285): <no items>
libinput Horizonal Scroll Enabled (258): 1
如您所见,我没有速度缩放和减速属性,这显然是我应该设置的。“加速速度”已经为 0,所以不确定我能在那里做什么。我尝试通过设置加速,xset
但这似乎也没有任何效果。我搜索了有关更新鼠标驱动程序的信息,以防万一出现问题,但除了重新安装 xorg 之外没有找到太多,这听起来不像我想要的。有什么建议么?
我也有这个问题。您可以尝试使用xinput命令设置它。喜欢:
其中
12
是鼠标 id,269
是“libinput Accel Speed”的代码,-0.5
是告诉它要慢一点(我猜 0 是基线,所以要放慢它,你要低于 0)。如果这仍然太快,您可以尝试 -0.6、-0.7 等。要重置它,请将其设置回 0.0。