Как отключить ввод движения мыши, оставив кнопки мыши включенными?


9

У меня есть мышь, которую я просто использую для кнопок. Я хочу отключить только ввод движения мышью. Физическое покрытие датчика не работает.

Ответы:


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
Аккуратный хак. Доступные свойства можно найти с помощью xinput list 6(где 6находится устройство). Документацию о свойствах можно найти здесь: x.org/wiki/Development/Documentation/PointerAcceleration
Лекенштейн

3

У моей мыши нет свойства «Device Accel Concel Deceleration». Я все еще был в состоянии отключить движение с

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 - моя оптическая USB-мышь Mitsumi Electric Apple .

Список устройств

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правильно прочитал , вы можете установить в разделе CorePointer вашего xorg.conf:

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:]]*}
}

Это, к сожалению, имеет побочный эффект отключения входа колеса прокрутки устройства.

Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.