Merge pull request #186 from dmsalomon/mailsync-param

Mailsync: only pass -a to mbsync when no args
This commit is contained in:
Luke Smith 2019-05-01 19:54:24 -04:00 committed by GitHub
commit ed6ed5854a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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