summaryrefslogtreecommitdiff
path: root/todo
diff options
context:
space:
mode:
Diffstat (limited to 'todo')
-rwxr-xr-xtodo20
1 files changed, 10 insertions, 10 deletions
diff --git a/todo b/todo
index 06fa01f..cba0126 100755
--- a/todo
+++ b/todo
@@ -10,18 +10,18 @@ touch "$file"
height="$(wc -l "$file" | awk '{print $1}')"
prompt="Add/delete a task: "
-cmd=$(dmenu -l "$height" -p "$prompt" "$@" < "$file")
+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"
- height=$(( height - 1 ))
- else
- echo "$cmd" >> "$file"
- height=$(( height + 1 ))
- fi
+ 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
- cmd=$(dmenu -l "$height" -p "$prompt" "$@" < "$file")
+ cmd=$(dmenu -l "$height" -p "$prompt" "$@" <"$file")
done
exit 0