Skip to content

Instantly share code, notes, and snippets.

@robmiller
Created June 14, 2021 11:15
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 robmiller/bc3514e161b776884f11fbc861c23661 to your computer and use it in GitHub Desktop.
Save robmiller/bc3514e161b776884f11fbc861c23661 to your computer and use it in GitHub Desktop.
AppleScript for refreshing Skim PDF
tell application "Skim"
repeat with n from (count of documents) to 1 by -1
set doc to document n
if name of doc is "book-screen.pdf" then
revert doc
end if
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment