Created
July 3, 2013 19:45
AppleScript for App Tamer that wakes Dropbox for 60 seconds, then sleeps it again. Note that you have to have enabled AutoStop for Dropbox already. Set this to run every X minutes on a cron, for fun and profit. Increase the delay if you think it will need more time to sync on a slow connection.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "App Tamer" | |
wake "Dropbox" | |
delay 60 | |
# Hack to get App Tamer to sleep Dropbox again | |
# There is no "sleep" verb ಠ_ಠ | |
autostop false | |
autostop true | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment