zsh/tasks.zsh @ c924e638ae4b

Move task lists to the Dropbox folder.
author Steve Losh <steve@stevelosh.com>
date Sun, 10 Jan 2010 14:19:16 -0500
parents 95b6f336d3ba
children 9d23f5158a1b a8af7beac4c2
#!/usr/bin/env zsh

alias t='~/src/t/t.py --task-dir="~/Documents/Dropbox/tasks" --list=tasks.txt'
alias m='~/src/t/t.py --task-dir="~/Documents/Dropbox/tasks" --list=music.txt'
alias g='~/src/t/t.py --task-dir="~/Documents/Dropbox/tasks" --list=groceries.txt'
alias k='~/src/t/t.py --task-dir="~/Documents/Dropbox/tasks" --list=books.txt'
alias p='~/src/t/t.py --task-dir="~/Documents/Dropbox/tasks" --list=pack.txt'
alias b='~/src/t/t.py --list=bugs'

alias pa='~/src/t/t.py --task-dir="~/Documents/Dropbox/tasks" --list=pack-archive'
function packfor() {
    cp "$HOME/Documents/Dropbox/tasks/pack-archive" "$HOME/Documents/Dropbox/tasks/pack.txt"
    touch "$HOME/Documents/Dropbox/tasks/.pack.txt.done"
}