Skip to content

Instantly share code, notes, and snippets.

@xRyul
Created October 15, 2020 10:08
Show Gist options
  • Save xRyul/a31df629d07ca444a9a776a1d920d836 to your computer and use it in GitHub Desktop.
Save xRyul/a31df629d07ca444a9a776a1d920d836 to your computer and use it in GitHub Desktop.
FIX Wacom Tablet on MacOS without restarting or unplugging the device
#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