all repos — dotfiles @ 07180714d27cc5a94fd51ae389972b46ba9f6d06

linux dotfiles

i3blocks/taskwarrior

#!/bin/sh
incount=$(task +PENDING +in count)
todocount=$(task +PENDING -in count)
inbox_icon=$(echo -en "<b><span font='Font Awesome 5 Free'>\uf01c</span></b>")
todo_icon=$(echo -en "<b><span font='Font Awesome 5 Free'>\uf071</span></b>")

if [ $incount -gt 0 ]
then
    inbox_out=$(echo -en "$inbox_icon  <b>$incount</b>")
fi

if [ $todocount -gt 0 ]
then
    todo_out=$(echo -en "<span color='#d8c61e'>$todo_icon  <b>$todocount</b></span>")
fi

[ "$todo_out" ] && [ "$inbox_out" ] && separator=$(echo "<span color='#666666'>  ╱  </span>")

if [ "$todo_out" ] || [ "$inbox_out" ]
then
    echo -e "$todo_out$separator$inbox_out"
fi