Command
如何檢查輸入設備是否在xinput中被禁用?
我可以使用以下方法禁用鍵盤或滑鼠:
xinput disable <device>
但是我怎麼知道設備以前是否在命令行中被禁用?
手冊頁說:
--disable device Disable the device. This call is equivalent to xinput --set-prop device "Device Enabled" 0
因此,您可以使用
xinput --list-props
andgrep
來確定設備是否已啟用。