#!/bin/bash

if [ -z "$2" ]; then
	echo "usage: $0 <id> <0/1>"
	xinput list
else
	xinput set-prop $1 "Device Enabled" $2
fi




