Browse Source

Merge pull request #186 from dmsalomon/mailsync-param

Mailsync: only pass -a to mbsync when no args
tags/v3.1
Luke Smith 5 years ago
committed by GitHub
parent
commit
ed6ed5854a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      bin/mailsync

+ 6
- 1
bin/mailsync View File

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


# Run mbsync. You can feed this script different settings. # 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 rm -f /tmp/imapsyncicon_$USER
pkill -RTMIN+12 i3blocks pkill -RTMIN+12 i3blocks




Loading…
Cancel
Save