This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.local/bin/statusbar/sb-mailbox
David JULIEN 2cafd49a44
Merge branch 'dev' into logos
nvim: fix lsp count in statusline (deprecation)
mail: add mutt + mbsync + msmtp configs
      add mailo account
      enhance scan for new mails
      change keybindings to switch mailboxes

!!!BREAKING git: change default signing key
2021-12-15 11:49:18 +01:00

27 lines
918 B
Bash
Executable File

#!/usr/bin/env sh
######################################################################
# @author : swytch (adapted from Luke Smith - lukesmith.xyz)
# @file : sb-mailbox
# @license : GPLv3
# @created : Saturday Feb 13, 2021 18:15:13 CET
#
# @description : mail block for dwmblocks
######################################################################
unread=""
for acc in $(ls "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/)
do
new="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/$acc/*/new/ -type f | grep -iv "trash" | wc -l 2>/dev/null)"
if [ $new -gt 0 ]; then
[ -n "$(echo "$acc" | sed -n '/@ens/p')" ] && box=""
[ -n "$(echo "$acc" | sed -n '/@mailo/p')" ] && box=""
[ -n "$(echo "$acc" | sed -n '/@posteo/p')" ] && box=""
unread="$unread/$box$new"
fi
done
[ -n "$unread" ] && unread="($(echo "$unread" | cut -c 2-))" || exit
printf "  %s%s " "$unread" "$icon"