For anyone that hasn't noticed yet, the new wacom tablet reports the correct name, so no need to amend my EA script to do more replacements. However, the grep for wacom now comes up with a false positive. Easy fix, just change the line:
system_profiler SPUSBDataType | grep -B 3 -i wacom | awk 'NR%5==1' |
to read:
system_profiler SPUSBDataType | grep -B 3 WACOM | awk 'NR%5==1' |
Sean
