# HG changeset patch # User Steve Losh # Date 1263151156 18000 # Node ID c924e638ae4ba12a9e070af100f9264fa86626a8 # Parent 711219d15b394ff39dd40b9e6c3cde7bdeb586db Move task lists to the Dropbox folder. diff -r 711219d15b39 -r c924e638ae4b zsh/tasks.zsh --- a/zsh/tasks.zsh Sun Jan 10 12:19:54 2010 -0500 +++ b/zsh/tasks.zsh Sun Jan 10 14:19:16 2010 -0500 @@ -1,16 +1,14 @@ #!/usr/bin/env zsh -alias t='~/src/t/t.py --task-dir="~/tasks"' -alias m='~/src/t/t.py --task-dir="~/tasks" --list=music' -alias g='~/src/t/t.py --task-dir="~/tasks" --list=groceries' -alias k='~/src/t/t.py --task-dir="~/tasks" --list=books' -alias p='~/src/t/t.py --task-dir="~/tasks" --list=pack' +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="~/tasks" --list=pack-archive' +alias pa='~/src/t/t.py --task-dir="~/Documents/Dropbox/tasks" --list=pack-archive' function packfor() { - cp "$HOME/tasks/pack-archive" "$HOME/tasks/pack"; - touch "$HOME/tasks/.pack.done" - hg --cwd ~/tasks add 'pack' '.pack.done'; - hg -R ~/tasks commit -m 'Starting to pack.' + cp "$HOME/Documents/Dropbox/tasks/pack-archive" "$HOME/Documents/Dropbox/tasks/pack.txt" + touch "$HOME/Documents/Dropbox/tasks/.pack.txt.done" }