如何在xinput中检查输入设备是否被禁用?

如何在xinput中检查输入设备是否被禁用?

我可以使用以下方法禁用键盘或鼠标:

xinput disable <device>

但是我如何才能在命令行中知道设备之前是否被禁用呢?

答案1

手册页说:

--disable device  
    Disable the device. This call is equivalent to 
    xinput --set-prop device "Device Enabled" 0

因此您可以使用xinput --list-propsgrep来了解设备是否已启用。

相关内容