Make zsh task and timew prompts optional
This commit is contained in:
parent
34e4b590ca
commit
5064075721
1 changed files with 15 additions and 5 deletions
20
zshrc
20
zshrc
|
@ -18,17 +18,27 @@ setopt hist_ignore_space
|
||||||
|
|
||||||
bindkey -v
|
bindkey -v
|
||||||
|
|
||||||
|
which task > /dev/null && which jq > /dev/null
|
||||||
|
run_task_prompt=$?
|
||||||
task_prompt() {
|
task_prompt() {
|
||||||
tasks="$(task +ACTIVE export | jq -r '.[].description' | sed 's/^/‣ /')"
|
if [ -z $run_task_prompt ]
|
||||||
if [ -n "$tasks" ]
|
|
||||||
then
|
then
|
||||||
echo "\x1b[30m$tasks\n\x1b[0m"
|
tasks="$(task +ACTIVE export | jq -r '.[].description' | sed 's/^/‣ /')"
|
||||||
|
if [ -n "$tasks" ]
|
||||||
|
then
|
||||||
|
echo "\x1b[30m$tasks\n\x1b[0m"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
which timew > /dev/null
|
||||||
|
run_timew_prompt=$?
|
||||||
timew_prompt() {
|
timew_prompt() {
|
||||||
if [ $(timew get dom.active) -eq "1" ]
|
if [ -z $run_timew_prompt ]
|
||||||
then echo '\x1b[31m●\x1b[0m '
|
then
|
||||||
|
if [ $(timew get dom.active) -eq "1" ]
|
||||||
|
then echo '\x1b[31m●\x1b[0m '
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue