Skip to content

Instantly share code, notes, and snippets.

@tmiz
Created October 14, 2011 11:00
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 tmiz/1286815 to your computer and use it in GitHub Desktop.
Save tmiz/1286815 to your computer and use it in GitHub Desktop.
copy url and title from Safari
tell application "Safari"
if not (exists front document) then return
set _title to name of front document
set _url to URL of front document
end tell
set the clipboard to _url & return & _title & return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment