最后活跃于 1755460289

statusbar.sh 原始文件
1#!/bin/sh
2
3while true
4do
5 email="$(notmuch count tag:unread and tag:inbox)"
6 local="$(date +"%A %Y-%m-%d %H:%M")"
7 printf "📥 %s | 📅 %s\n" "$email" "$local"
8 sleep 10
9done
10