Created
February 28, 2018 16:01
-
-
Save desnudopenguino/e23d8a1f08917448fe1b42ebc4fe6c81 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
#!/usr/bin/env sh | |
# Current state | |
CUR_STATE=$(synclient -l | grep TouchpadOff | awk '{ print $3 }') | |
if [ $CUR_STATE = 0 ]; then | |
synclient TouchpadOff=1 | |
elif [ $CUR_STATE = 1 ]; then | |
synclient TouchpadOff=0 | |
fi | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment