"I've been using this script for a while now. It just SCPs a screenshot to your server. I use Fast Scripts (free for up to ten global shortcuts) to launch it. You'll need to setup ssh keys to your server for passwordless login. #!/bin/bash ## Screenshot script for Mac OS X ## Author: Eric Boehs ## URL: ericboehs.com # Set these variables: USERNAME=your_username SERVER=example.com DIR=\~/screenshots/ FILENAME=`date +%Y%m%d-%H%M%S` URL=http://example.com/screens... GROWLLOCATION=/usr/local/bin/growlnotify ################################## ### DO NOT EDIT BELOW THIS BOX ### ################################## mkdir -p /tmp/screenshots /usr/sbin/screencapture -i /tmp/screenshots/$FILENAME.png if [ -e /tmp/screenshots/$FILENAME.png ] then scp /tmp/screenshots/$FILENAME.png $USERNAME@$SERVER:$DIR echo -n $URL | pbcopy echo -n $FILENAME.png has been uploaded to $SERVER and the URL was copied to the Clip Board. | $GROWLLOCATION -t Upload Complete -i png #open $URL fi"
- Eric Boehs