Skip to content

Instantly share code, notes, and snippets.

@manavortex
Created October 3, 2019 17:32
Show Gist options
  • Save manavortex/21d63a1640a84d231393736312eecc29 to your computer and use it in GitHub Desktop.
Save manavortex/21d63a1640a84d231393736312eecc29 to your computer and use it in GitHub Desktop.
Makes older wacom tables less unusable on osX mojave
#!/bin/sh
tail -F /var/log/system.log | while read line; do
if echo "$line" | grep -q '.*wacom.*'; then
kill $(pidof PenTabletDriver)
sleep 1
open /Library/Application\ Support/Tablet/PenTabletDriver.app
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment