如何在启用鼠标按钮的同时禁用鼠标移动输入?


Answers:


9

您可以使用xinput

>xinput --list
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer            id=4    [slave  pointer  (2)]
⎜   ↳ Mouse0                                id=6    [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard           id=5    [slave  keyboard (3)]
    ↳ Keyboard0

在此情况下,您将获得鼠标的名称Mouse0。

使用以下命令,将鼠标速度降低100000倍,然后基本上为零。

xinput --set-prop 6 'Device Accel Constant Deceleration' 100000

要么

xinput --set-prop Mouse0 'Device Accel Constant Deceleration' 100000

要还原,您可以使用相同的

xinput --set-prop Mouse0 'Device Accel Constant Deceleration' 1

1
整洁的hack。可用的属性可以通过找到xinput list 66设备在哪里)。有关属性的文档可以在这里找到:x.org/wiki/Development/Documentation/PointerAcceleration
Lekensteyn 2014年

3

我的鼠标没有“设备加速常数减速度”属性。我仍然可以通过以下方式禁用运动

xinput set-prop 9 266 -1    
xinput set-prop 9 269 0 1

并重新启用它

xinput set-prop 9 269 1 0
input set-prop 9 266 0.0

我也禁用了我的按钮

xinput set-button-map 9 0 0 0

设备9是我的Mitsumi Electric Apple光学USB鼠标

设备清单

Device 'Mitsumi Electric Apple Optical USB Mouse':
    Device Enabled (132):   1
    Coordinate Transformation Matrix (134): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Accel Speed (266):     -1.000000
    libinput Accel Speed Default (267):     0.000000
    libinput Accel Profiles Available (268):        0, 0
    libinput Accel Profile Enabled (269):   0, 1
    libinput Accel Profile Enabled Default (270):   1, 0
    libinput Natural Scrolling Enabled (271):       0
    libinput Natural Scrolling Enabled Default (272):       0
    libinput Send Events Modes Available (250):     1, 0
    libinput Send Events Mode Enabled (251):        0, 0
    libinput Send Events Mode Enabled Default (252):        0, 0
    libinput Left Handed Enabled (273):     0
    libinput Left Handed Enabled Default (274):     0
    libinput Scroll Methods Available (275):        0, 0, 1
    libinput Scroll Method Enabled (276):   0, 0, 0
    libinput Scroll Method Enabled Default (277):   0, 0, 0
    libinput Button Scrolling Button (278): 2
    libinput Button Scrolling Button Default (279): 274
    libinput Middle Emulation Enabled (280):        0
    libinput Middle Emulation Enabled Default (281):        0
    Device Node (253):      "/dev/input/event4"
    Device Product ID (254):        1452, 772
    libinput Drag Lock Buttons (282):       <no items>
    libinput Horizonal Scroll Enabled (255):        1

2

如果我没看错man 4 mousedrv,您可以在xorg.conf的CorePointer部分中进行设置,

Option "EmulateWheel" true
Option "EmulateWheelButton" 0
Option "EmulateWheelInertia" 10000

它将移动转换为鼠标滚轮事件,但是惯性设置将使其变得过于敏感,以至于无法记录一个事件。在现代系统上,它是evdev而不是mousedrv。也可以在运行时使用xinput进行设置,例如:

xinput --set-prop 17 'Evdev Wheel Emulation' 1
xinput --set-prop 17 'Evdev Wheel Emulation Button' 0
xinput --set-prop 17 'Evdev Wheel Emulation Inertia' 10000

其中17应该是您自己的设备号。我使用一个函数通过设备名称获取此数字,并在启动脚本期间将其存储在$ device-id中。

set_device_id() {
  device_id=$(xinput --list | grep -m 1 "$1")
  device_id=${device_id##*id=}
  device_id=${device_id%%[[:space:]]*}
}

不幸的是,这具有禁用设备的滚轮输入的副作用。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.