task: Add aliases for showing tasks done

Can show tasks accomplished today (tdd, 'Task Done toDay'), since
yesterday (tdy, 'Task Done since Yesterday'), or in the last week (tdw,
'Task Done in the Week').
This commit is contained in:
Marty Oehme 2025-05-09 21:53:53 +02:00
parent d1f4c4ab8f
commit f68a62f377
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -29,7 +29,9 @@ if exist timew; then
else
alias tra="task active"
fi
alias trw="task end.after:today-1wk completed"
alias tdd="task end.after:today all" # done doday
alias tdy="task end.after:yesterday all" # done yesterday-today
alias tdw="task end.after:today-1wk completed" # done this week
alias tad="task +ACTIVE done"
alias tas="task +ACTIVE stop"