diff options
-rw-r--r-- | .zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.zshrc b/.zshrc index 97e0dd4b..a0748b33 100644 --- a/.zshrc +++ b/.zshrc @@ -146,7 +146,7 @@ alias t='task' setopt PROMPT_SUBST function prompt_task { - COUNT=$(task count -longterm) + COUNT=$(task count -longterm status.isnt:completed) [ "$COUNT" -gt 0 ] && echo "[%{$fg[red]%}$COUNT%{$fg[green]%}]" } |