Skip to content

Instantly share code, notes, and snippets.

@andyman
Created May 15, 2014 21:12
Show Gist options
  • Save andyman/201910f839a3060165a1 to your computer and use it in GitHub Desktop.
Save andyman/201910f839a3060165a1 to your computer and use it in GitHub Desktop.
Kills Mail.app on Mac OS X for a minute, every 5 seconds. Schedule this as a cron job to run every minute during your focus hours. You'll open up Mail, and it will quickly close it for you.
#!/bin/bash
# how many seconds to sleep for between quits
SLEEPTIME=5
for((i=0;i<60;i+=SLEEPTIME))
do
osascript -e 'tell application "Mail" to quit' > /dev/null 2>&1
sleep $SLEEPTIME
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment