#!/bin/bash # tpconfig # description: Disables touch pad 'tapping' echo "" echo -n "Disabling Touch-Pad 'tapping' feature .. " if [ -f /usr/local/bin/tpconfig ]; then /usr/local/bin/tpconfig --tapmode=0 echo "Done" else echo "[tpconfig is unavailable]" fi echo "" exit 0