lenovo 的 x220 是一台不錯的筆電, 效能和價格都蠻好的, 只是有一個討厭的 touchpad, 我就是用不習慣...
所以要讓他不會動的方法很多, 隨便紀錄兩個吧
1. 安裝 touchpad-indicator 套件, 以後就會有 applet 出現可以讓你點來點去選擇
2. 自己寫 shell script 控制, 但忘記出處了, 抱歉
#!/bin/bash # disable_touchpad.sh declare -i ID ID=`xinput list | grep -Eo 'TouchPad\s*id\=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}'` xinput set-prop $ID "Device Enabled" 0 echo Touchpad has been disabled.
#!/bin/bash # enable_touchpad.sh declare -i ID ID=`xinput list | grep -Eo 'TouchPad\s*id\=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}'` xinput set-prop $ID "Device Enabled" 1 echo Touchpad has been enabled.
沒有留言:
張貼留言