all repos — dotfiles @ 2fa4f0b499a63faa9327cea2c86e3cc18cb592fc

linux dotfiles

scripts/toggle_toucpad.sh

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

# device id=14
touchpad="$(xinput list-props 14 | awk 'NR == 2 {print $4}')"

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