後來在AskUbuntu討論區有看到別人用script來完成開關切換:執行一次功能就會由關閉變成開啟或是開啟變成關閉,直接看內容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/bash declare -i ID ID=`xinput list | grep -iEo 'TouchPad\s*id\=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}'` declare -i STATE STATE=`xinput list-props $ID|grep 'Device Enabled'|awk '{print $4}'` if [ $STATE -eq 1 ] then xinput disable $ID echo "Touchpad disabled." else xinput enable $ID echo "Touchpad enabled." fi |
關鍵字:Touchpad、Toggle、Enable、Disable
參考:How to disable the touchpad?
沒有留言:
張貼留言