Skip to content

Instantly share code, notes, and snippets.

@jeremyruppel
Last active December 20, 2015 22:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremyruppel/6208313 to your computer and use it in GitHub Desktop.
Save jeremyruppel/6208313 to your computer and use it in GitHub Desktop.
Automator action to print a QR code for an Evernote note.
on run {input, parameters}
tell application "Evernote"
get the note link of the first item in (selection as list)
end tell
end run
curl https://chart.googleapis.com/chart \
--data-urlencode chs=175x175 \
--data-urlencode cht=qr \
--data-urlencode chl=$1 \
--data-urlencode choe=UTF-8 | lp -o media=Custom.175x175
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment