#!/usr/bin/env sh unread="$(find ~/.local/share/mail/*/INBOX/new/* -type f 2>/dev/null | wc -l)" if [ ! "$(pgrep -x mbsync)" ]; then icon="" else icon="痢" fi if [ ! "$unread" -eq 0 ]; then echo "$icon $unread" else echo "" fi