Ative ou desative o dispositivo xinput com o seguinte script bash.
#!/bin/bash
device=13
state=$(xinput list-props "$device" | grep "Device Enabled" | grep -o "[01]$")
if [ $state == '1' ];then
xinput --disable "$device"
else
xinput --enable "$device"
fi