DELL Latitude 5490 在Ubuntu下关闭触控板
#!/bin/bash
touchchar=`xinput list |grep -i touchpad|cut -d '=' -f2`
devid=${touchchar:0:2}
var=$(xinput list-props $devid | grep "Device Enabled")
if [ ${var:((${#var}-1))} == "1" ];then
xinput se...
原创
2019-03-27 15:48:10 ·
1906 阅读 ·
0 评论