|
|
|
@ -1,6 +1,7 @@ |
|
|
|
#!/bin/sh |
|
|
|
|
|
|
|
acc_dir="$HOME/.config/neomutt/accounts/" |
|
|
|
mail_dir="$HOME/mail/" |
|
|
|
|
|
|
|
# Select default account |
|
|
|
default="$(find "$acc_dir" -name "*.mail" -printf "source '%p'\n" -quit)" |
|
|
|
@ -19,9 +20,10 @@ i=1 |
|
|
|
# Setup folder hooks for all the accounts |
|
|
|
for f in "$acc_dir"*.mail; do |
|
|
|
account="$(basename -s '.mail' "$f")" |
|
|
|
inbox="$(find "$mail_dir/$account" -maxdepth 1 -iname "inbox" -type d -printf "%f" -quit)" |
|
|
|
printf 'folder-hook =%s '\''source %s'\''\n' "$account" "$f" |
|
|
|
key="$(printf '%s' "$chars" | cut -c "$i")" |
|
|
|
printf 'macro index,pager <Esc>%s "<change-folder>=%s/Inbox<Return>" "Change to %s Inbox"\n' \ |
|
|
|
"$key" "$account" "$account" |
|
|
|
printf 'macro index,pager <Esc>%s "<change-folder>=%s/%s<Return>" "Change to %s Inbox"\n' \ |
|
|
|
"$key" "$account" "$inbox" "$account" |
|
|
|
i=$((i+1)) |
|
|
|
done |
|
|
|
|