Skip to content

Instantly share code, notes, and snippets.

@sdomi
Created May 27, 2018 18:04
Show Gist options
  • Save sdomi/778b98ca8954bef716051150b1c1a864 to your computer and use it in GitHub Desktop.
Save sdomi/778b98ca8954bef716051150b1c1a864 to your computer and use it in GitHub Desktop.
#!/bin/bash
xsetwacom --set "Wacom Bamboo Connect Pen stylus" MapToOutput 1280x1024+0+0
while true; do
sudo evtest --query /dev/input/event2 EV_KEY KEY_LEFTMETA
if [[ $? == 10 ]]; then
xdotool mousedown 1
else
xdotool mouseup 1
fi
sleep 0.05
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment