summaryrefslogtreecommitdiff
path: root/todo
diff options
context:
space:
mode:
Diffstat (limited to 'todo')
-rwxr-xr-xtodo16
1 files changed, 8 insertions, 8 deletions
diff --git a/todo b/todo
index fbb893b..ecabbc7 100755
--- a/todo
+++ b/todo
@@ -13,16 +13,16 @@ prompt="Add/delete a task: "
cmd=$(dmenu -l "$height" -p "$prompt" "$@" < "$file")
while [ -n "$cmd" ]; do
- if grep -q "^$cmd\$" "$file"; then
- grep -v "^$cmd\$" "$file" > "$file.$$"
- mv "$file.$$" "$file"
+ if grep -q "^$cmd\$" "$file"; then
+ grep -v "^$cmd\$" "$file" > "$file.$$"
+ mv "$file.$$" "$file"
height=$(( height - 1 ))
- else
- echo "$cmd" >> "$file"
- height=$(( height + 1 ))
- fi
+ else
+ echo "$cmd" >> "$file"
+ height=$(( height + 1 ))
+ fi
- cmd=$(dmenu -l "$height" -p "$prompt" "$@" < "$file")
+ cmd=$(dmenu -l "$height" -p "$prompt" "$@" < "$file")
done
exit 0