diff options
author | Joe <bousset.rudy@gmail.com> | 2023-01-31 21:13:10 +0100 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2023-01-31 21:13:10 +0100 |
commit | ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f (patch) | |
tree | 7341031ed0f84167350e95f48397761ef6544ad9 /.local/bin/status/sb-mailbox | |
parent | fbsd merge (diff) | |
parent | up (diff) | |
download | dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.tar.gz dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.tar.bz2 dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.tar.xz dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.tar.zst dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.zip |
Merge branch 'master' of gitjoe.xyz:dotfiles-bsd
Diffstat (limited to '.local/bin/status/sb-mailbox')
-rwxr-xr-x | .local/bin/status/sb-mailbox | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/.local/bin/status/sb-mailbox b/.local/bin/status/sb-mailbox index 0dfcbd6..f7a3786 100755 --- a/.local/bin/status/sb-mailbox +++ b/.local/bin/status/sb-mailbox @@ -13,10 +13,9 @@ case $BLOCK_BUTTON in 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac -mb_a="$(ls "${MAIL:-/var/mail/jozan}"/main/INBOX/new/ | wc -l 2>/dev/null)" -mb_b="$(ls "${MAIL:-/var/mail/jozan}"/gmail_br/INBOX/new/ | wc -l 2>/dev/null)" -mb_c="$(ls "${MAIL:-/var/mail/jozan}"/gmail_oon/INBOX/new/ | wc -l 2>/dev/null)" -mb_d="$(ls "${MAIL:-/var/mail/jozan}"/gmail_tos/INBOX/new/ | wc -l 2>/dev/null)" +mb_a="$(ls "${MAIL:-/var/mail/jozan}"/gmail_br/INBOX/new/ | wc -l 2>/dev/null)" +mb_b="$(ls "${MAIL:-/var/mail/jozan}"/gmail_oon/INBOX/new/ | wc -l 2>/dev/null)" +mb_c="$(ls "${MAIL:-/var/mail/jozan}"/gmail_tos/INBOX/new/ | wc -l 2>/dev/null)" sync=0 if pidof mbsync >/dev/null 2>&1; then @@ -30,7 +29,7 @@ case "$sync" in esac if [ "$mb_a" -gt 0 ]; then - echo -n "main:" $mb_a + echo -n "br:" $mb_a fi if [ "$mb_a" -gt 0 ] && [ "$mb_b" -gt 0 ]; then @@ -38,7 +37,7 @@ if [ "$mb_a" -gt 0 ] && [ "$mb_b" -gt 0 ]; then fi if [ "$mb_b" -gt 0 ]; then - echo -n "br:" $mb_b + echo -n "oon:" $mb_b fi if [ "$mb_b" -gt 0 ] && [ "$mb_c" -gt 0 ]; then @@ -48,17 +47,5 @@ elif [ "$mb_a" -gt 0 ] && [ "$mb_c" -gt 0 ]; then fi if [ "$mb_c" -gt 0 ]; then - echo -n "oon:" $mb_c -fi - -if [ "$mb_c" -gt 0 ] && [ "$mb_d" -gt 0 ]; then - echo -n " - " -elif [ "$mb_b" -gt 0 ] && [ "$mb_d" -gt 0 ]; then - echo -n " - " -elif [ "$mb_a" -gt 0 ] && [ "$mb_d" -gt 0 ]; then - echo -n " - " -fi - -if [ "$mb_d" -gt 0 ]; then - echo -n "tos:" $mb_d + echo -n "tos:" $mb_c fi |