Created
December 30, 2021 17:51
-
-
Save dev-armando/7e79db8263dc17e0491f2b804c1b3d1a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
case $1 in | |
on) | |
sudo modprobe psmouse | |
;; | |
off) | |
sudo modprobe -r psmouse | |
;; | |
*) | |
echo "require params" | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment