growlit.sh

#!/bin/bash

## Written by Jacob Braun, http://five.jacobbraun.com

growlit=`grep true /etc/growlit`

## If $growlit is found to be true, then all hell breaks lose.

while [ $growlit == "true" ]; do
        COUNTER=0
        while [ $COUNTER -lt 10 ]; do
                osascript /etc/.stolen/StolenGrowlNotifier.scpt
                sleep 2
                let COUNTER=COUNTER+1
        done
        growlit=`grep true /etc/growlit`
done
exit 0