all repos — dotfiles @ ceaf404140f9c821ecf8f7b8cd05184b5600fb10

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