all repos — dotfiles @ e29018886c2d0cc1f390ef55d1a8f839febca198

linux dotfiles

i3blocks/newsboat.sh

1 2 3 4 5 6 7 8 9 10
#!/bin/sh
count=$(newsboat -x "reload" && newsboat -x "print-unread" | awk '{print $1}')
icon=$(echo -en "<span font='Font Awesome 5 Free'>\uf09e</span>")

if [ $count -gt 0 ];
then
    echo "<span color='#00FF00'>$icon $count</span>"
else
    echo "$icon $count"
fi