Fix taskwarrior prompt integration never showing

This commit is contained in:
Talia 2023-09-13 09:26:08 +02:00
parent c3b5d1b524
commit c4c8ce5eba
1 changed files with 2 additions and 2 deletions

4
zshrc
View File

@ -21,7 +21,7 @@ bindkey -v
which task > /dev/null && which jq > /dev/null which task > /dev/null && which jq > /dev/null
run_task_prompt=$? run_task_prompt=$?
task_prompt() { task_prompt() {
if [ -z $run_task_prompt ] if [ $run_task_prompt -eq 0 ]
then then
tasks="$(task +ACTIVE export | jq -r '.[].description' | sed 's/^/‣ /')" tasks="$(task +ACTIVE export | jq -r '.[].description' | sed 's/^/‣ /')"
if [ -n "$tasks" ] if [ -n "$tasks" ]
@ -34,7 +34,7 @@ task_prompt() {
which timew > /dev/null which timew > /dev/null
run_timew_prompt=$? run_timew_prompt=$?
timew_prompt() { timew_prompt() {
if [ -z $run_timew_prompt ] if [ $run_timew_prompt -eq 0 ]
then then
if [ $(timew get dom.active) -eq "1" ] if [ $(timew get dom.active) -eq "1" ]
then echo '\x1b[31m●\x1b[0m ' then echo '\x1b[31m●\x1b[0m '