#!/bin/bash # tpconfig # description: set my touchpad options. # # --rate=0 clears up a problem with erratic movement. echo "" echo -n "Setting Touchpad options..." if [ -f /usr/local/bin/tpconfig ]; then /usr/local/bin/tpconfig -3 --rate=0 --tapmode=1 --corner=0 --relative echo "Done" else echo "[tpconfig is unavailable]" fi echo "" exit 0