Added birdseye add-on

This commit is contained in:
Gina Trapani
2009-04-05 18:08:38 -07:00
parent 40e0da5108
commit 1f17672215
3 changed files with 220 additions and 1 deletions

16
.todo.actions.d/birdseye Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
action=$1
shift
[ "$action" = "usage" ] && {
echo " Bird's eye report:"
echo " birdseye"
echo " generates a textual report of pending and completed tasks in all projects and contexts"
echo ""
exit
}
[ "$action" = "birdseye" ] && {
python ~/.todo.actions.d/birdseye.py "$TODO_FILE" "$DONE_FILE"
}