Skip to content

Instantly share code, notes, and snippets.

@deeenes
Last active March 6, 2016 19:32
Show Gist options
  • Save deeenes/7027657687a50b5dd37a to your computer and use it in GitHub Desktop.
Save deeenes/7027657687a50b5dd37a to your computer and use it in GitHub Desktop.
Toggle touchpad under X11
cat > /usr/bin/tpad <<EOF
#!/bin/bash
state=`synclient -l | grep Touchpad | grep -o '.$'`
if [[ $state == '1' ]];
then
synclient TouchpadOff=0
elif [[ $state == '0' ]];
then
synclient TouchpadOff=1
fi
EOF
chmod +x /usr/bin/tpad
# use command `tpad` to toggle the touchpad
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment