Skip to content

Instantly share code, notes, and snippets.

@dev-armando
Created December 30, 2021 17:51
Show Gist options
  • Save dev-armando/7e79db8263dc17e0491f2b804c1b3d1a to your computer and use it in GitHub Desktop.
Save dev-armando/7e79db8263dc17e0491f2b804c1b3d1a to your computer and use it in GitHub Desktop.
#!/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