笔者的笔记本安装了Linux mint 19.1 系统, 笔记本默认的触摸板是开启的, 在开发过程中, 会经常误操作到触摸板, 因此笔者就写了一个快速关闭笔记本触摸板的命令.
1. 命令使用
关闭触摸板: ./psmouse disable开启触摸板: ./psmouse enable
2. 脚本源码
#!/bin/bash
if [ $
echo "The command should be: $0 enable|disable"
exit
fi
if [ "enable" == $1 ]; then
sudo modprobe psmouse
fi
if [ "disable" == $1 ]; then
sudo rmmod psmouse
fi