如何在 Kubuntu 18.04 上禁用鼠标加速

如何在 Kubuntu 18.04 上禁用鼠标加速

我刚刚安装了 Kubuntu 18.04,并尝试禁用鼠标加速。我有一个脚本文件,我通常使用以下命令使用它,但它不再起作用:

xinput set-prop 8 "Device Accel Profile" -1
xinput set-prop 8 "Device Accel Constant Deceleration" 4

xinput 的输出是:

Virtual core pointer                          id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ Razer Razer Abyssus                       id=8    [slave  pointer  (2)]
⎜   ↳ Gaming KB  Gaming KB                      id=10   [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)]
    ↳ Power Button                              id=7    [slave  keyboard (3)]
    ↳ Gaming KB  Gaming KB                      id=9    [slave  keyboard (3)]
    ↳ Gaming KB  Gaming KB                      id=11   [slave  keyboard (3)]

和 xinput -list-props

Device 'Razer Razer Abyssus':
        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 Natural Scrolling Enabled (274):       0
        libinput Natural Scrolling Enabled Default (275):       0
        libinput Scroll Methods Available (276):        0, 0, 1
        libinput Scroll Method Enabled (277):   0, 0, 0
        libinput Scroll Method Enabled Default (278):   0, 0, 0
        libinput Button Scrolling Button (279): 2
        libinput Button Scrolling Button Default (280): 2
        libinput Middle Emulation Enabled (281):        0
        libinput Middle Emulation Enabled Default (282):        0
        libinput Accel Speed (283):     0.000000
        libinput Accel Speed Default (284):     0.000000
        libinput Accel Profiles Available (285):        1, 1
        libinput Accel Profile Enabled (286):   1, 0
        libinput Accel Profile Enabled Default (287):   1, 0
        libinput Left Handed Enabled (288):     0
        libinput Left Handed Enabled Default (289):     0
        libinput Send Events Modes Available (259):     1, 0
        libinput Send Events Mode Enabled (260):        0, 0
        libinput Send Events Mode Enabled Default (261):        0, 0
        Device Node (262):      "/dev/input/event2"
        Device Product ID (263):        5426, 66
        libinput Drag Lock Buttons (290):       <no items>
        libinput Horizontal Scroll Enabled (291):

我尝试更改 Accel Profile Enabled,但是没有作用(除非我做错了什么)。

有任何想法吗?

答案1

这在 Ubuntu 上对我有用。
您必须更改加速速度。

xinput set-prop <mouse_id> <accel_speed_id> <number>

因此就你的情况而言:

xinput set-prop 8 283 -0.5

注意:我以 -0.5 为例,您可以使用任意值。
这将持续到下次重新启动或注销。如果您希望永久使用,请使用 X11 conf 文件 (/usr/share/X11/xorg.conf.d),网上有一些教程,但我没能成功。
另一种方法是创建一个启动脚本来为您执行命令。

答案2

系统设置 -> 输入设备 -> 鼠标 -> 高级 -> 加速度配置文件

None

答案3

我还没有弄清楚如何禁用鼠标加速。而且我很确定 Jubast 的方法不是最好的。如果是的话,0.0应该给出 1:1 的比例,但事实并非如此。xset m 0 0也是无用的(天啊,为什么在 Linux 上做这样的事情仍然这么难?天啊)。关于存储设置,您可以通过将其写入 ~/.config/kcminputrc 文件来使配置永久化。这是我的


[Keyboard]
KeyboardRepeating=0
NumLock=0
RepeatDelay=200
RepeatRate=25

[Mouse]
XLbInptAccelProfileFlat=true
XLbInptNaturalScroll=false
XLbInptPointerAcceleration=-0.75
cursorTheme=breeze_cursors

相关内容