summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Brox <tobias@redpill-linpro.com>2018-12-11 10:19:29 +0100
committerTobias Brox <tobias@redpill-linpro.com>2018-12-11 10:19:43 +0100
commit6268d185baec77d1f8d2fa65f00e1f8520c36601 (patch)
tree9f986371110ee20bf2f6c6871db51bb22e3bf6e9
parentd9c0e27d06d24bf7828deba201c3ed24c4f47aad (diff)
downloadcalendar-cli-6268d185baec77d1f8d2fa65f00e1f8520c36601.zip
tweaking the EXAMPLES - I was actually using this daily for a while, until the task list got too overwhelmingly large :-(
-rw-r--r--EXAMPLES6
1 files changed, 3 insertions, 3 deletions
diff --git a/EXAMPLES b/EXAMPLES
index 97b7c8b..fb474fa 100644
--- a/EXAMPLES
+++ b/EXAMPLES
@@ -51,7 +51,7 @@ fi
## Interactively mark tasks as completed:
-calendar-cli todo $selflags --hide-parents --limit 10 list --todo-template='# calendar-cli todo --todo-uid={uid} complete # {summary}' > $tempfile
+calendar-cli todo $selflags --hide-parents --limit 12 list --todo-template='# calendar-cli todo --todo-uid={uid} complete # {summary}' > $tempfile
## Exit if there aren't any tasks
if [ ! -s $tempfile ]
then
@@ -65,7 +65,7 @@ $EDITOR $tempfile
. $tempfile
## Set more realistic due-dates on overdue tasks
-calendar-cli todo --overdue list --todo-template='calendar-cli todo --todo-uid={uid} postpone --due "in 4d" # {summary}' > $tempfile
+calendar-cli todo --overdue list --todo-template='calendar-cli todo --todo-uid={uid} postpone --due "in 15d" # {summary}' > $tempfile
if [ -s $tempfile ]
then
echo -e "\nNext up: Look over overdue tasks and consider procrastinating some of them. Press enter"
@@ -75,7 +75,7 @@ then
fi
## Clean the list a bit by procrastinating tasks (this includes the overdue)
-calendar-cli todo --hide-future list --todo-template='calendar-cli todo --todo-uid={uid} postpone "in 4d" # {summary}' > $tempfile
+calendar-cli todo --limit 10 --hide-future list --todo-template='calendar-cli todo --todo-uid={uid} postpone "in 4d" # {summary}' > $tempfile
if [ -s $tempfile ]
then
echo -e "\nNext up: Consider procrastinating the start-date of some of the tasks on your list. Press enter"