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

View file

@ -26,7 +26,11 @@ alias tan="task annotate"
alias tn="task next +READY" alias tn="task next +READY"
alias tun="task next urgency \> 4" 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 trw="task end.after:today-1wk completed"
alias tad="task +ACTIVE done" alias tad="task +ACTIVE done"