Dernière activité 1755460289

Révision ef567d22aa2d51b43adaa10c2d27e5494f24102d

statusbar.sh Brut
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