Sfoglia il codice sorgente

Changed new variable in the script

Signed-off-by: Marcin Wozniak <y0rune@aol.com>
pull/434/head
Marcin Woźniak 4 anni fa
committed by Marcin Wozniak
parent
commit
681b762d50
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      bin/mailsync

+ 1
- 1
bin/mailsync Vedi File

@@ -31,7 +31,7 @@ fi
syncandnotify() {
acc="$(echo "$account" | sed "s/.*\///")"
mbsync $opts "$acc"
new=$(find "$HOME/.local/share/mail/$acc/INBOX/new/" "$HOME/.local/share/mail/$acc/Inbox/new/" "$HOME/.local/share/mail/$acc/inbox/new/" -type f -newer "$HOME/.config/mutt/.mailsynclastrun" 2> /dev/null)
new=$(find $(ls $HOME/.local/share/mail/$acc/* | grep -i inbox | sed 's/\://')/new -type f -newer "$HOME/.config/mutt/.mailsynclastrun" 2> /dev/null)
newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l)
if [ "$newcount" -gt "0" ]; then
notify "$acc" "$newcount" &


Caricamento…
Annulla
Salva