Linux Mint 18 上的鼠标指针太快

Linux Mint 18 上的鼠标指针太快

我的问题是鼠标指针速度太快,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 之外没有找到更多信息,这听起来不像我想要的。有什么建议么?

答案1

我也有这个问题。您可以尝试使用以下命令进行设置x输入命令。喜欢:

xinput --set-prop 12 269 -0.5

其中12是鼠标 ID,269是“libinput Accel Speed”的代码,并且 是-0.5告诉它变慢(我猜 0 是基线,所以为了减慢它,你要低于 0)。如果仍然太快,您可以尝试 -0.6、-0.7 等。要重置它,请将其设置回 0.0。

相关内容