Selaa lähdekoodia

Merge pull request #186 from dmsalomon/mailsync-param

Mailsync: only pass -a to mbsync when no args
tags/v3.1
Luke Smith 5 vuotta sitten
committed by GitHub
vanhempi
commit
ed6ed5854a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 muutettua tiedostoa jossa 6 lisäystä ja 1 poistoa
  1. +6
    -1
      bin/mailsync

+ 6
- 1
bin/mailsync Näytä tiedosto

@@ -21,7 +21,12 @@ echo " 🔃" > /tmp/imapsyncicon_$USER
pkill -RTMIN+12 i3blocks

# Run mbsync. You can feed this script different settings.
mbsync -a "$@"
if [ $# -eq 0 ]; then
mbsync -a
else
mbsync "$@"
fi

rm -f /tmp/imapsyncicon_$USER
pkill -RTMIN+12 i3blocks



Ladataan…
Peruuta
Tallenna