Skip to content

Instantly share code, notes, and snippets.

@mr-m0nst3r
Created November 27, 2019 01:36
Show Gist options
  • Save mr-m0nst3r/e0fadb77183acb0d8563335b0c4088a7 to your computer and use it in GitHub Desktop.
Save mr-m0nst3r/e0fadb77183acb0d8563335b0c4088a7 to your computer and use it in GitHub Desktop.
turn on/off touchpad on linux
#!/bin/bash
if [ "$1" == "on" ]; then
/usr/bin/xinput enable "`xinput list | grep -i touchpad | awk '{print $3" "$4" "$5}'`"
elif [ "$1" == "off" ]; then
/usr/bin/xinput disable "`xinput list | grep -i touchpad | awk '{print $3" "$4" "$5}'`"
else
echo " Usage: touchpad on/off"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment