Adjust the tasks aliases.
author |
Steve Losh <steve@stevelosh.com> |
date |
Wed, 20 Jan 2010 00:24:16 -0500 |
parents |
35b42a555d52
|
children |
1f03dce228f5
|
branches/tags |
(none) |
files |
zsh/tasks.zsh |
Changes
--- a/zsh/tasks.zsh Mon Jan 18 18:58:32 2010 -0500
+++ b/zsh/tasks.zsh Wed Jan 20 00:24:16 2010 -0500
@@ -1,14 +1,14 @@
#!/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 t='~/lib/t/t.py --task-dir="~/Dropbox/tasks" --list=tasks.txt'
+alias m='~/lib/t/t.py --task-dir="~/Dropbox/tasks" --list=music.txt'
+alias g='~/lib/t/t.py --task-dir="~/Dropbox/tasks" --list=groceries.txt'
+alias k='~/lib/t/t.py --task-dir="~/Dropbox/tasks" --list=books.txt'
+alias p='~/lib/t/t.py --task-dir="~/Dropbox/tasks" --list=pack.txt'
+alias b='~/lib/t/t.py --list=bugs'
-alias pa='~/src/t/t.py --task-dir="~/Documents/Dropbox/tasks" --list=pack-archive'
+alias pa='~/lib/t/t.py --task-dir="~/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"
+ cp "$HOME/Dropbox/tasks/pack-archive" "$HOME/Dropbox/tasks/pack.txt"
+ touch "$HOME/Dropbox/tasks/.pack.txt.done"
}