Skip to content

Instantly share code, notes, and snippets.

@mwalling
Created November 6, 2011 19:17
Show Gist options
  • Save mwalling/1343334 to your computer and use it in GitHub Desktop.
Save mwalling/1343334 to your computer and use it in GitHub Desktop.
Add NNW links to Safari's Reading List
tell application "NetNewsWire"
refreshAll
repeat with theSubscription in every subscription
repeat with theItem in every headline in theSubscription
if isRead of theItem is false then
tell application "Safari" to add reading list item URL of theItem
set isRead of theItem to true
end if
end repeat
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment