Last active
December 20, 2015 22:49
-
-
Save jeremyruppel/6208313 to your computer and use it in GitHub Desktop.
Automator action to print a QR code for an Evernote note.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on run {input, parameters} | |
tell application "Evernote" | |
get the note link of the first item in (selection as list) | |
end tell | |
end run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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