Linux-Mint

Linux Mint 18 上的滑鼠指針太快

  • February 6, 2018

我的問題是滑鼠指針速度太高,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命令設置它。像:

xinput --set-prop 12 269 -0.5

其中12是滑鼠 id,269是“libinput Accel Speed”的程式碼,-0.5是告訴它要慢(我猜 0 是基線,所以要減慢它,你要低於 0)。如果這仍然太快,您可以嘗試 -0.6、-0.7 等。要重置它,請將其設置回 0.0。

引用自:https://unix.stackexchange.com/questions/417407