Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

touchpad-toggle 137B

12345678
  1. #!/bin/sh
  2. synclient -l | grep -P "TouchpadOff\s+\=\s+0"
  3. if [ $? -eq 0 ]; then
  4. synclient TouchpadOff=1
  5. else
  6. synclient TouchpadOff=0
  7. fi