Skip to content

Instantly share code, notes, and snippets.

@SoundBlaster
Created November 30, 2020 08:05
Show Gist options
  • Save SoundBlaster/d8efce7abccbabb7e7c71e5bbfed1b02 to your computer and use it in GitHub Desktop.
Save SoundBlaster/d8efce7abccbabb7e7c71e5bbfed1b02 to your computer and use it in GitHub Desktop.
Apple Books DRM remover
tell application "System Events"
tell application process "Books"
set frontmost to true
end tell
end tell
say "start"
set i to 0
repeat 500 times
do shell script "screencapture -m -t jpg ~/Desktop/book/page" & i & ".jpg"
delay 0.2
tell application "System Events"
tell process "Books"
key code 124
end tell
end tell
delay 0.8
set i to i + 1
end repeat
say "stop"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment