#!/bin/sh note_file="$HOME/.config/note" note_count=$(wc -l $note_file | cut -d ' ' -f1) note_icon=$(echo -en "\uf249") if [ $note_count -gt 0 ]; then echo -en " $note_icon $note_count " fi