Stop Procrastinating with Minuteur

Here is a small little applescript to start a timer to prevent you from spending too much time reading feeds. I’m using Minuteur for the timer.

Change NewsFire to your prefered feed reader.

tell application "System Events" 
    tell application "Minuteur" to activate
    --type 3000
    key code 20
    key code 29
    key code 29
    key code 29
    tell application "NewsFire" to activate
end tell

admin