c924e638ae4b

Move task lists to the Dropbox folder.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Sun, 10 Jan 2010 14:19:16 -0500
parents 711219d15b39
children 97bf431de3e6
branches/tags (none)
files zsh/tasks.zsh

Changes

--- 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"
 }