Skip to content

Instantly share code, notes, and snippets.

@anoved
Created March 16, 2013 22:00
Show Gist options
  • Save anoved/5178510 to your computer and use it in GitHub Desktop.
Save anoved/5178510 to your computer and use it in GitHub Desktop.
A simple Applescript to add the current article from Vienna (an RSS reader) to your Safari Reading List. Save to ~/Library/Scripts/Applications/Vienna.
tell application "Vienna"
set the_article to current article
set article_URL to the link of the_article
set article_title to the title of the_article
set article_intro to (body of the_article as text)
tell application "Safari" to add reading list item article_URL with title article_title and preview text article_intro
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment