all repos — dotfiles @ e5b78cd0020127df6c986046429feff99b4bf591

linux dotfiles

scripts/toggle_touchpad.sh (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
#!/bin/sh

# device id=14
# toggles the touchapd on and sleeps for 30 seconds and then
# disables it again.
touchpad="$(xinput list-props 14 | awk 'NR == 2 {print $4}')"

if [ "$touchpad" -eq 0 ]; then
    xinput --enable 14
else
    xinput --disable 14
fi