Skip to content

Instantly share code, notes, and snippets.

View mattkreikemeier's full-sized avatar

Matt Kreikemeier mattkreikemeier

View GitHub Profile
@mattkreikemeier
mattkreikemeier / InstallSendPdfToEvernote
Created August 17, 2012 01:33 — forked from brettkelly/InstallSendPdfToEvernote
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