我想让鼠标速度更快。但是“鼠标和触摸屏”设置窗口似乎什么也没做(它实际上有什么作用吗?它显示完全错误的值并且那里的更改没有任何改变)
我该怎么做才能提高鼠标速度?
像这样的问题在这里被问和回答(例如)
他们建议使用
xset
或者
xinput
此外,使用 dconf不起作用,因为我的系统上没有这样的条目。
xset 不会更改我系统上的任何内容。xinput 在我的系统上不提供任何鼠标速度/灵敏度选项:
Device Enabled (139): 1
Coordinate Transformation Matrix (141): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Accel Speed (276): -1.000000
libinput Accel Speed Default (277): 0.000000
libinput Accel Profiles Available (278): 1, 1
libinput Accel Profile Enabled (279): 1, 0
libinput Accel Profile Enabled Default (280): 1, 0
libinput Natural Scrolling Enabled (281): 0
libinput Natural Scrolling Enabled Default (282): 0
libinput Send Events Modes Available (260): 1, 0
libinput Send Events Mode Enabled (261): 0, 0
libinput Send Events Mode Enabled Default (262): 0, 0
libinput Left Handed Enabled (283): 0
libinput Left Handed Enabled Default (284): 0
libinput Scroll Methods Available (285): 0, 0, 1
libinput Scroll Method Enabled (286): 0, 0, 0
libinput Scroll Method Enabled Default (287): 0, 0, 0
libinput Button Scrolling Button (288): 2
libinput Button Scrolling Button Default (289): 274
libinput Middle Emulation Enabled (290): 0
libinput Middle Emulation Enabled Default (291): 0
Device Node (263): "/dev/input/event6"
Device Product ID (264): 1203, 12556
libinput Drag Lock Buttons (292): <no items>
libinput Horizonal Scroll Enabled (265): 1
那么有什么办法可以提高鼠标速度呢?...为什么鼠标支持这么差?oO
从您的
xinput
输出中,您可能需要考虑更改Accel Speed
为 > 的当前值-1.000000
。此参数的最大值为 1.0,即最大加速度,可能会为您提供所需的增加的鼠标速度。例如,我正在使用
-.1
我的加速度值。要临时(为会话)设置一个新值,请使用以下命令:
sudo xinput set-prop <n> 276 -.1
,其中<n>
是通过运行确定的鼠标/触摸板的属性值xinput list
(看起来您已经这样做了,但该设备未在您的输出)。要永久设置此值,您需要编辑位于
/usr/share/X11/xorg.conf.d
. 此站点上提供了选项详细信息/语法(例如,AccelSpeed
)。