A quick tip on how to quickly annotate a recently taken screenshot using an Alfred workflow.

I love Alfred. I'm sad if I'm using another computer and pressing ⌘-space shows:

TBC

instead of:

TBC

I wrote a very quick workflow that has left me very happy. It searches my screen shots folder for the last modified file and then opens it in Glui so that I can add a quick annotation (hey! it's what I do...). Yes, I know that I can do this directly from Glui but I don't always have it running and I use Dropbox to store the captures anyway.

This saves me, on average, 38 seconds per screen shot:

TBC

TBC

Instead, of this insufferable chore, I press ⌘-space and type 'anno' and the press ↩. Done.

TBC

It's the little things in life... Here's the workflow.

TBC

TBC

#!/bin/bash
cd ~/Dropbox/Screenshots
SSHOT_PATH=`ls -tr | tail -1`
open -a Glui "$SSHOT_PATH"