diff options
Diffstat (limited to 'scripts/dot-local/bin')
| -rw-r--r-- | scripts/dot-local/bin/dot-editorconfig | 6 | ||||
| -rwxr-xr-x | scripts/dot-local/bin/mailsync | 150 |
2 files changed, 111 insertions, 45 deletions
diff --git a/scripts/dot-local/bin/dot-editorconfig b/scripts/dot-local/bin/dot-editorconfig index a882442..dcc9f21 100644 --- a/scripts/dot-local/bin/dot-editorconfig +++ b/scripts/dot-local/bin/dot-editorconfig @@ -1,7 +1,11 @@ root = true -[*] +[[shell]] end_of_line = lf insert_final_newline = true indent_style = space indent_size = 4 +switch_case_indent = false +space_redirects = true +keep_padding = true +function_next_line = true diff --git a/scripts/dot-local/bin/mailsync b/scripts/dot-local/bin/mailsync index 8029444..7e16626 100755 --- a/scripts/dot-local/bin/mailsync +++ b/scripts/dot-local/bin/mailsync @@ -1,54 +1,116 @@ #!/usr/bin/env sh -# Run only if not already running in other instance -pgrep mbsync >/dev/null && { - echo "mbsync is already running." - exit +VERBOSE= +if [ "$1" = "-v" ]; then + VERBOSE=1 + shift +fi + +mbsync_running() +{ + account_escaped=$(printf '%s\n' "$1" | sed 's/[.[\*^$()+?{|\\]/\\&/g') + + pgrep -f "^mbsync([[:space:]]+[^ ]+)*[[:space:]]+$account_escaped($|[[:space:]])" >/dev/null || + pgrep -f "^mbsync([[:space:]]+[^ ]+)*[[:space:]]+-a($|[[:space:]])" >/dev/null } +# Run only if not already running in other instance +if mbsync_running "$1"; then + _acc="$([ -z "$1" ] && echo "all" || echo "$1")" + echo "mbsync ($_acc) is already running." + exit +fi + notify() { - notify-send --app-name="Mail" -- "$1" "$2" + notify-send --app-name="Mail" -- "$1" "$2" +} + +MAILDIR="$XDG_DATA_HOME/mail" +lastrun_base="$XDG_CACHE_HOME/.mailsynclastrun" +lastrun="$lastrun_base" +[ -n "$1" ] && { + lastrun="${lastrun}_$1" +} +time_lastrun="$(stat -c %Y "$lastrun" 2>/dev/null || echo '0')" + +[ -f "$lastrun_base" ] || touch "$lastrun_base" +[ -f "$lastrun" ] || touch "$lastrun" + +rm_flag= +mbsync_flag="-q" +notmuch_flag="--quiet" +if [ -n "$VERBOSE" ]; then + rm_flag="-v" + mbsync_flag="--verbose" + notmuch_flag="--verbose" +fi + +# delete all +deleted messages +notmuch search --format=text0 --output=files tag:deleted | xargs -0 --no-run-if-empty rm $rm_flag + +sync_and_notify() +{ + mbsync $mbsync_flag "$1" + + new=$(fd --type f --changed-after "@$time_lastrun" . "$MAILDIR/$1/INBOX/new/" "$MAILDIR/$1/INBOX/cur/" 2>/dev/null) + newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l) + + case 1 in + $((newcount > 5))) + echo "$newcount new mail for $1." + notify "New Mail!" "$newcount new mail(s)." + ;; + $((newcount > 0))) + echo "$newcount new mail for $1." + for file in $new; do + # Extract and decode subject and sender from mail. + subject=$(awk '/^Subject: / && ++n == 1,/^.*: / && ++i == 2' "$file" | head -n-1 | + perl -CS -MEncode -ne 'print decode("MIME-Header", $_)' | + sed 's/^Subject: //' | tr -d '\n\t') + from="$(sed -n "/^From:/ s|From: *|| p" "$file" | + perl -CS -MEncode -ne 'print decode("MIME-Header", $_)')" + from="${from% *}" + from="${from%\"}" + from="${from#\"}" + notify "$from:" "$subject" + done + ;; + *) echo "No new mail for $1." ;; + esac } -# export GPG_TTY="$(tty)" -# export DISPLAY=":0" -# export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/"$(id -u)"/bus -export MAILDIR="$XDG_DATA_HOME/mail" -lastrun="$XDG_CACHE_HOME/.mailsynclastrun" -# export PYTHONWARNINGS="ignore::UserWarning" - -# afew --move-mails --all -mbsync -q mit - -new=$(find "$MAILDIR/mit/INBOX/new/" "$MAILDIR/mit/INBOX/cur/" -type f -newer "$lastrun" 2>/dev/null) -newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l) - -case 1 in - $((newcount > 5))) - echo "$newcount new mail for mit." - notify "New Mail!" "$newcount new mail(s)." - ;; - $((newcount > 0))) - echo "$newcount new mail for mit." - for file in $new; do - # Extract and decode subject and sender from mail. - subject=$(awk '/^Subject: / && ++n == 1,/^.*: / && ++i == 2' "$file" | head -n-1 | - perl -CS -MEncode -ne 'print decode("MIME-Header", $_)' | - sed 's/^Subject: //' | tr -d '\n\t') - from="$(sed -n "/^From:/ s|From: *|| p" "$file" | - perl -CS -MEncode -ne 'print decode("MIME-Header", $_)')" - from="${from% *}" - from="${from%\"}" - from="${from#\"}" - notify "$from:" "$subject" - done - ;; - *) echo "No new mail for mit." ;; -esac - -# notmuch new -# afew --tag --new +allaccounts="$(grep -hs "^\(Group\)" "$XDG_CONFIG_HOME/isyncrc")" + +IFS=' +' +if [ -z "$1" ]; then + tosync="$allaccounts" +else + tosync="$(for arg in "$@"; do for availacc in $allaccounts; do + [ "$arg" = "${availacc##* }" ] && echo "$availacc" && break + done || echo "error $arg"; done)" +fi + +for account in $tosync; do + case $account in + Group*) sync_and_notify "${account##* }" & ;; + error*) echo "ERROR: Account ${account##* } not found." ;; + esac +done + +wait + +if pgrep -f 'notmuch new' >/dev/null; then + notify "Notmuch running" "Notmuch new is running from another sync.\n Please run it again later." +else + notmuch new $notmuch_flag +fi #Create a touch file that indicates the time of the last run of mailsync -touch "$lastrun" +if [ -z "$1" ]; then + # if no args are provided, touch all files + touch "${lastrun_base}"* +else + touch "$lastrun" +fi |
