RHEL 6 關閉ThinkPad e42觸摸板

鄙人新配了一筆記本ThinkPad e42(i3 2310m) ,觸摸板一直容易誤操做,故尋求解決辦法,找了好久 ,終於解決,現記錄以下:shell

安裝 xorg-x11-apps 包: yum install xorg-x11-appsbash

而後:app

# 屏蔽
xinput set-int-prop 12 "Device Enabled" 8 0
# 啓用
xinput set-int-prop 12 "Device Enabled" 8 1


寫一小命令:
#!/bin/bash
#echo "==================================="
#echo "============觸摸板管理程序============"
if [ $1 == 'on' ]
then
        xinput set-int-prop 12 "Device Enabled" 8 1
        echo "觸摸板開啓成功!"
elif [ $1 == 'off' ]
then
        xinput set-int-prop 12 "Device Enabled" 8 0
        echo "觸摸板關閉成功!"
else
        echo "請輸入參數:on/off"
        echo "好比開啓觸摸板:chumoban on"
fi
相關文章
相關標籤/搜索