소스 검색

forgot escape on | to get variable; case condition s/no/mute/

pull/875/head
Wayne Reeves 1 년 전
부모
커밋
d2a5d06d43
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      bin/mailsync

+ 3
- 3
bin/mailsync 파일 보기

@@ -19,7 +19,7 @@ pgrep mbsync >/dev/null && { echo "mbsync is already running."; exit ;}
# files for variable assignments. This is ugly, but there are few options that
# will work on the maximum number of machines.
eval "$(grep -h -- \
"^\s*\(export \)\?\(MBSYNCRC\|PASSWORD_STORE_DIR\|NOTMUCH_CONFIG\|GNUPGHOME|MAILSYNC_MUTE\)=" \
"^\s*\(export \)\?\(MBSYNCRC\|PASSWORD_STORE_DIR\|NOTMUCH_CONFIG\|GNUPGHOME\|MAILSYNC_MUTE\)=" \
"$HOME/.profile" "$HOME/.bash_profile" "$HOME/.zprofile" "$HOME/.config/zsh/.zprofile" "$HOME/.zshenv" \
"$HOME/.config/zsh/.zshenv" "$HOME/.bashrc" "$HOME/.zshrc" "$HOME/.config/zsh/.zshrc" \
"$HOME/.pam_environment" 2>/dev/null)"
@@ -32,9 +32,9 @@ lastrun="${XDG_CONFIG_HOME:-$HOME/.config}/mutt/.mailsynclastrun"

# Mute notifications or get kernel name.
# Settings are different for MacOS (Darwin) systems.
[ -z "$MAILSYNC_MUTE" ] && notify="$(uname)" || notify="no"
[ -z "$MAILSYNC_MUTE" ] && notify="$(uname)" || notify="mute"
case "$notify" in
no)
mute)
notify() { echo "notifications disabled" >/dev/null ;}
;;
Darwin)


불러오는 중...
취소
저장