Created
October 15, 2020 10:08
-
-
Save xRyul/a31df629d07ca444a9a776a1d920d836 to your computer and use it in GitHub Desktop.
FIX Wacom Tablet on MacOS without restarting or unplugging the device
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
#v3 | |
#Unload all Launch Agents | |
find /Library/LaunchAgents -iname '*wacom*.plist' -maxdepth 1 -exec launchctl unload {} \; | |
#Kill all Wacom Processes | |
kill $(ps aux | grep -v grep | grep -i wacom | awk '{print $2}' | grep -v 141) | |
sleep 2 | |
#Relaunch all Wacom LaunchAgents | |
find /Library/LaunchAgents -iname '*wacom*.plist' -maxdepth 1 -exec launchctl load {} \; | |
#Start the driver | |
open /Library/Application\ Support/Tablet/WacomTabletDriver.app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment