Takes a screenshot and a webcam snapshot and emails them to flickr. Requires
isightcapture. Hacked up to spy on the Apple repair team as they try to repair my Mac Book Pro's backlight for the second time.
PATH=/Users/default/
EMAIL="yourflickremail+private@photos.flickr.com"
TAGS="repair_spy"
TIMESTAMP=`/bin/date "+%y%m%d%H%M%S"`
FRIENDLY_TIMESTAMP=`/bin/date "+%Y/%m/%d %H:%M"`
/usr/sbin/screencapture -mxC $PATHscreen_$TIMESTAMP.png
/usr/local/bin/isightcapture -t png $PATHisight_$TIMESTAMP.png
/usr/bin/uuencode $PATHscreen_$TIMESTAMP.png $PATHscreen_$TIMESTAMP.png | /usr/bin/mail -s "Repair Spy Screenshot - $FRIENDLY_TIMESTAMP tags: $TAGS" $EMAIL
/usr/bin/uuencode $PATHisight_$TIMESTAMP.png $PATHisight_$TIMESTAMP.png | /usr/bin/mail -s "Repair Spy iSight Cature - $FRIENDLY_TIMESTAMP tags: $TAGS" $EMAIL
Toss this in your crontab like so, making sure to run it as the user that you provide to the Apple Techs
*/1 * * * * default /Users/default/repair_spy >& /dev/null