11 lines
287 B
Bash
Executable File
11 lines
287 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" -gt "0" ] && echo " $unread" || echo ""
|
|
echo "$icon"
|