#!/bin/sh while true do email="$(notmuch count tag:unread and tag:inbox)" local="$(date +"%A %Y-%m-%d %H:%M")" printf "📥 %s | 📅 %s\n" "$email" "$local" sleep 10 done