taskwarrior: Extend active task listing alias

Extended active task listing to show both the active task from
taskwarrior, but also any currently 'tracking' task from timewarrior.

Ideally, those should be the same - but if they mismatch or timwarrrior
is not correctly tracking the active task, this is still good
information to have at a glance.
This commit is contained in:
Marty Oehme 2023-01-12 22:55:18 +01:00
parent 274cc8026a
commit 369345880d
Signed by: Marty
GPG Key ID: 73BA40D5AFAF49C9
1 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,11 @@ alias tan="task annotate"
alias tn="task next +READY"
alias tun="task next urgency \> 4"
alias tra="task active"
if exist timew; then
alias tra="task active && timew"
else
alias tra="task active"
fi
alias trw="task end.after:today-1wk completed"
alias tad="task +ACTIVE done"