將 Linux Mint 中的滑鼠速度提高到超出其預設最大值?

將 Linux Mint 中的滑鼠速度提高到超出其預設最大值?

所以我嘗試用谷歌搜尋這個,但我看到的只是很多關於如何減慢滑鼠速度的問題。

我已經習慣了我的滑鼠移動速度比 Mint 上最快的設定要快得多。有什麼方法可以進一步提高速度,特別是在不降低準確性的情況下?順便說一下,DE 是 Cinnamon。

提前致謝。

答案1

我的相關 AskUbuntu 答案:https://askubuntu.com/q/27862/6016

xset命令允許您更改桌面的許多方面,包括滑鼠加速。

xset m 2 1

第一個數字是加速度,第二個數字是閾值。因此,在我提供的範例中,一旦滑鼠在螢幕上移動 1 像素,其移動速度就會提高 2 倍。零有一些特殊意義,所以我堅持使用 1。

我不認為你需要將加速度設定得太高才能得到你想要的東西。

一旦您重新啟動/重新啟動,此效果就會消失。如果它適合您,則可以將該命令添加到您的“啟動應用程式”中以自動應用。

祝你好運!

答案2

目前的答案似乎不適用於 Linux Mint 18 xinput

確定id您要變更的輸入設備:

user@computer:~$ xinput --list --short

⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ SYNA3071:00 06CB:82F1 Touchpad            id=10   [slave  pointer  (2)]
⎜   ↳ PS/2 Generic Mouse                        id=12   [slave  pointer  (2)]
⎜   ↳ SynPS/2 Synaptics TouchPad                id=13   [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)]
    ↳ Sleep Button                              id=8    [slave  keyboard (3)]
    ↳ HP HD Camera: HP HD Camera                id=9    [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=11   [slave  keyboard (3)]
    ↳ HP Wireless hotkeys                       id=14   [slave  keyboard (3)]
    ↳ HP WMI hotkeys                            id=15   [slave  keyboard (3)]

我想更換 SYNA3071:00 觸控板,所以id我要更改的是10

確定您可以為此輸入裝置變更哪些屬性:

user@computer:~$ xinput --list-props 8

<pre>Device &apos;SYNA3071:00 06CB:82F1 Touchpad&apos;:
    Device Enabled (144):   1
    Coordinate Transformation Matrix (146): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Tapping Enabled (281): 1
    libinput Tapping Enabled Default (282): 0
    libinput Tapping Drag Enabled (283):    1
    libinput Tapping Drag Enabled Default (284):    1
    libinput Tapping Drag Lock Enabled (285):   0
    libinput Tapping Drag Lock Enabled Default (286):   0
    libinput Tapping Button Mapping Enabled (287):  1, 0
    libinput Tapping Button Mapping Default (288):  1, 0
    libinput Natural Scrolling Enabled (289):   1
    libinput Natural Scrolling Enabled Default (290):   0
    libinput Disable While Typing Enabled (291):    1
    libinput Disable While Typing Enabled Default (292):    1
    libinput Scroll Methods Available (293):    1, 1, 0
    libinput Scroll Method Enabled (294):   1, 0, 0
    libinput Scroll Method Enabled Default (295):   1, 0, 0
    libinput Click Methods Available (296): 1, 1
    libinput Click Method Enabled (297):    1, 0
    libinput Click Method Enabled Default (298):    1, 0
    libinput Middle Emulation Enabled (299):    0
    libinput Middle Emulation Enabled Default (300):    0
    libinput Accel Speed (301): 0.000000
    libinput Accel Speed Default (302): 0.000000
    libinput Left Handed Enabled (303): 0
    libinput Left Handed Enabled Default (304): 0
    libinput Send Events Modes Available (266): 1, 1
    libinput Send Events Mode Enabled (267):    0, 0
    libinput Send Events Mode Enabled Default (268):    0, 0
    Device Node (269):  &quot;/dev/input/event17&quot;
    Device Product ID (270):    1739, 33521
    libinput Drag Lock Buttons (305):   &lt;no items&gt;
    libinput Horizontal Scroll Enabled (306):   0</pre>

我想改變libinput Accel Speed,這就是財產301

id用新的更新property value

user@computer:~$ xinput --set-prop 10 301 0.75

您可以嘗試所有這些屬性,看看哪一個最適合您。

答案3

只是有一個不太技術性的解決方案來解決我的滑鼠遊標移動太慢的問題,即使滑塊已最大化- 我通過將另一個(不是新的,但幾年前的)滑鼠連接到計算機來解決這個問題。四倍(沒有實際測量。現在感覺很好。)遊標速度和響應能力,而不干擾 xinput ;)

答案4

Mint 設定 GUI 和libinput Accel Speedxinput 設定指針的加速度,而不是速度。要改變指針速度,需要設定“座標變換矩陣”,如圖https://unix.stackexchange.com/a/358019/128880

就我而言,命令是:

xinput --set-prop 8 158 1.600000, 0.000000, 0.000000, 0.000000, 1.600000, 0.000000, 0.000000, 0.000000, 1.000000

相關內容