10 lines
283 B
Plaintext
10 lines
283 B
Plaintext
|
#!/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"
|