Skip to content

Instantly share code, notes, and snippets.

@masatoi
Created January 5, 2015 08:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masatoi/d0d63b0fa8851e819e0c to your computer and use it in GitHub Desktop.
Save masatoi/d0d63b0fa8851e819e0c to your computer and use it in GitHub Desktop.
Toggle touchpad
#!/bin/bash
if [ $(synclient -l | grep TouchpadOff | gawk -F '=' '{ print $2 }') -eq 0 ]; then
synclient TouchpadOff=1
else
synclient TouchpadOff=0
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment