Command

如何檢查輸入設備是否在xinput中被禁用?

  • July 23, 2017

我可以使用以下方法禁用鍵盤或滑鼠:

xinput disable <device>

但是我怎麼知道設備以前是否在命令行中被禁用?

手冊頁說:

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

因此,您可以使用xinput --list-propsandgrep來確定設備是否已啟用。

引用自:https://unix.stackexchange.com/questions/381192