Created
October 3, 2019 17:32
-
-
Save manavortex/21d63a1640a84d231393736312eecc29 to your computer and use it in GitHub Desktop.
Makes older wacom tables less unusable on osX mojave
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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