Last active
August 29, 2015 14:11
-
-
Save mo6020/95af68982b4db5f5e624 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env sh | |
tweetbot_running() { | |
ps x | grep -v grep | grep Tweetbot > /dev/null | |
} | |
clean_tweetbot_cache() { | |
rm -rf ~/Library/Containers/com.tapbots.TweetbotMac/Data/Library/Caches/com.tapbots.TweetbotMac | |
} | |
tell_tweetbot_to() { | |
osascript -e "tell application \"Tweetbot\" to $1" | |
} | |
quit_tweetbot() { | |
tell_tweetbot_to quit | |
while tweetbot_running ; do | |
sleep 0.001 | |
done | |
} | |
start_tweetbot() { | |
tell_tweetbot_to activate | |
} | |
if tweetbot_running ; then | |
quit_tweetbot | |
clean_tweetbot_cache | |
start_tweetbot | |
else | |
clean_tweetbot_cache | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment