Skip to content

Instantly share code, notes, and snippets.

@jsumners
Created April 4, 2012 19:11
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 jsumners/2304838 to your computer and use it in GitHub Desktop.
Save jsumners/2304838 to your computer and use it in GitHub Desktop.
Do you have a screenshot in your OS X clipboard? Write it to a PNG!
set d to the clipboard as «class PNGf»
set fid to open for access "/tmp/screenshot.png" with write permission
write d to fid
close access fid
-- http://www.michael-hogg.co.uk/applescript.php
-- helped me figure this one out
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment