1 Star 0 Fork 0

Witt/shells

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
touchpad 283 Bytes
Copy Edit Raw Blame History
Witt authored 2022-11-23 10:03 +08:00 . add: linux/shutdown-sca.sh; linux/startup-sca.sh
#!/bin/bash
# 查询触控板的pid,因为该pid可能会变化,所以每次都动态获取
id=$(xinput | grep TouchPad | awk '{print $7}')
case "$1" in
on)
xinput --enable ${id#*=}
;;
off)
xinput --disable ${id#*=}
;;
*)
echo "Usage: touchpad {on|off}"
;;
esac
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/mediocrep/shells.git
git@gitee.com:mediocrep/shells.git
mediocrep
shells
shells
main

Search