all repos — dotfiles @ 3e7b9bd15494a1a65412dc224abb90d146cc4204

linux dotfiles

config/i3blocks/note (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
#!/bin/sh
note_file="$HOME/.config/note"
note_count=$(wc -l $note_file | cut -d ' ' -f1)
note_icon=$(echo -en "<span font='Font Awesome 5 Free '>\uf249</span>")

if [ $note_count -gt 0 ]; then
    echo -e "<span color='#ffff00'>$note_icon $note_count</span>"
fi