노트북 터치패드(touchpad) On/Off toggle 스크립트
근래 작업용 노트북이 필요하여 다시 셋팅하다 보니, 타이핑 칠때 마다 터치패드가 나를 불편하게 만드네요.
간단한 toggle 명령 하나 만들어봄.
# cat /usr/bin/tponoff
—
#!/bin/bash
TP_ID=`xinput | grep TouchPad | awk ‘{print $6}’ | sed -e ‘s/id=//g’`
echo “TouchPad ID : $TP_ID”
#xinput list-props $TP_ID | grep “Device Enabled”
TP_ST=`xinput list-props $TP_ID | grep “Device Enabled” | cut -d : -f 2 | sed -e ‘s/<tab표식>//g’`
if [ “$TP_ST” = “0” ] ; then
echo “TouchPad status change from Off to On”
xinput enable $TP_ID
else
echo “TouchPad status change from On to Off”
xinput disable $TP_ID
fi
TP_ST1=`xinput list-props $TP_ID | grep “Device Enabled” | cut -d : -f 2 | sed -e ‘s/<tab표식>//g’`
echo “TouchPad Status : $TP_ST1”
—