aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtodo10
1 files changed, 5 insertions, 5 deletions
diff --git a/todo b/todo
index f28dd8c..ba9127f 100755
--- a/todo
+++ b/todo
@@ -28,7 +28,7 @@ function todo_find {
find $folder/ -maxdepth $TODO_MAXDEPTH -xtype f -iname 'todo*' | while read todo; do
# Ignore lists without tasks
- if grep -q -e '*' -e '-' $todo; then
+ if grep -q -e '* [ ]' -e '-' $todo; then
echo $todo
fi
done
@@ -40,7 +40,7 @@ function todo_list {
# User's Taskwarrior
if which task &> /dev/null; then
- if [ "`task status:pending count`" != "0" ]; then
+ if [ "`task status:pending count 2> /dev/null`" != "0" ]; then
echo "taskwarrior:"
#echo ""
task list 2> /dev/null
@@ -53,7 +53,7 @@ function todo_list {
SILENT="true"
fi
- SILENT=$SILENT tasks $taskstatus list
+ SILENT=$SILENT tasks $taskstatus list 2> /dev/null
echo ""
fi
@@ -79,9 +79,9 @@ function todo_list {
echo ""
if [ ! -z "$status" ]; then
- grep -e '*' -e '-' $todo | grep "\($status\)"
+ grep -e '* [ ]' -e '-' $todo | grep "\($status\)"
else
- grep -e '*' -e '-' $todo
+ grep -e '* [ ]' -e '-' $todo
fi
echo ""