欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[转]linux shell 关闭笔记本触摸板

程序员文章站 2022-06-01 13:38:22
...

#!/bin/sh
if xinput list-props "SynPS/2 Synaptics TouchPad" | grep "Device Enabled" | grep 1
then
modprobe -r psmouse # 关
else
modprobe psmouse # 开
fi
# 开关触摸板