samedami fbc555bdc7
Add 'syncnow' script and binding
Also remove symlink to 'mailsync' script.
2020-05-16 18:45:33 +02:00

11 lines
288 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"