1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00
dotfiles/private_dot_config/polybar/bin/executable_mailcount

16 lines
268 B
Plaintext
Raw Normal View History

2020-03-07 14:01:06 +00:00
#!/usr/bin/env sh
unread="$(find ~/.local/share/mail/*/INBOX/new/* -type f 2>/dev/null | wc -l)"
if [ ! "$(pgrep -x mbsync)" ]; then
2020-12-01 19:02:19 +00:00
icon="📬"
2020-03-07 14:01:06 +00:00
else
2020-12-01 19:02:19 +00:00
icon="🔃"
2020-03-07 14:01:06 +00:00
fi
if [ ! "$unread" -eq 0 ]; then
2020-12-01 19:02:19 +00:00
echo "$icon $unread"
2020-03-07 14:01:06 +00:00
else
echo "%{F#666}%{F-}"
2020-03-07 14:01:06 +00:00
fi