all repos — dotfiles @ e04b8ecd3898a329203432f91675e297fb5ff689

linux dotfiles

i3blocks/newsboat.sh (view raw)

 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