Skip to content

Instantly share code, notes, and snippets.

@brettkelly
Created February 15, 2012 18:19
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save brettkelly/1837909 to your computer and use it in GitHub Desktop.
Save brettkelly/1837909 to your computer and use it in GitHub Desktop.
Install the "Send PDF to Evernote" option in the Print > PDF menu
tell application "Finder"
try
set appPath to (path to application "Evernote" as text)
on error
display dialog "Couldn't find Evernote. Is it installed?"
end try
set printPath to (path to "dlib" from user domain as text) & "PDF Services"
make new alias at printPath to appPath with properties {name:"Send PDF to Evernote"}
end tell
@jeffla
Copy link

jeffla commented Jul 11, 2015

A fresh Yosemite install was missing the PDF Services folder (causing the script to fail) so I added a couple of try blocks in https://gist.github.com/jeffla/50de60fd48cdd2c5bc82

Thanks for the script!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment