2020-05-14 11:13:54 +02:00

10 lines
283 B
Bash
Executable File

#!/bin/sh
# Modified Luke Smith's script.
unread="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/*/[Ii][Nn][Bb][Oo][Xx]/new/* -type f | wc -l 2>/dev/null)"
icon="$(cat "/tmp/imapsyncicon_$USER" 2>/dev/null)"
[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "$unread$icon"