dotfiles/scripts/toggle-touchpad.sh

12 lines
390 B
Bash
Executable File

export `xinput list | grep -i touchpad | awk '{ print $6 }'`
TOUCH_ENABLED=`xinput list-props $id | grep Device\ Enabled | awk '{ print $4 }'`
if [ $TOUCH_ENABLED = 0 ]; then
xinput set-prop $id "Device Enabled" 1
elif [ $TOUCH_ENABLED = 1 ]; then
xinput set-prop $id "Device Enabled" 0
else
echo "Could not get touchpad status from xinput"
exit 1
fi
exit 0