Xinput 设备禁用不适用于所有鼠标

Xinput 设备禁用不适用于所有鼠标

一台计算机连接了 2 个鼠标,我想禁用它们。我尝试使用 xinput 来做到这一点。它适用于一只鼠标 (OM),但不适用于第二只鼠标 (SIGMACHIP USB 鼠标)。第二只鼠标仅被禁用一会儿,大约一分钟后它会再次工作。两款鼠标均采用 USB 接口。我在 3 台不同的计算机上检查了它,它的行为是相同的(ubuntu 12.04)。

有没有其他方法可以禁用鼠标,比如说 2 小时,然后再次打开它?

adm@l:~$ xinput
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ SIGMACHIP Usb Mouse                       id=10   [slave  pointer  (2)]
⎜   ↳ OM                                        id=9    [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)]
    ↳ Logitech Logitech USB Keyboard            id=8    [slave  keyboard (3)]
adm@l:~$ xinput set-prop 9 "Device Enabled" 0
adm@l:~$ xinput set-prop 10 "Device Enabled" 0

答案1

我找到了一个解决方案:

添加xorg.conf/etc/X11帮助。

现在禁用鼠标永远有效,但是在插入新鼠标或键盘后,您必须使用 手动启用它xinput

$ cat xorg.conf

Section "ServerFlags"
        Option  "AutoAddDevices"        "true"
        Option  "AutoEnableDevices"     "false"
        Option  "AllowMouseOpenFail"    "false"
        Option  "AllowEmptyInput"       "on"
EndSection

相关内容