diff options
Diffstat (limited to 'lib/misc.zsh')
-rw-r--r-- | lib/misc.zsh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/misc.zsh b/lib/misc.zsh index fab4be931..8d6727251 100644 --- a/lib/misc.zsh +++ b/lib/misc.zsh @@ -6,4 +6,12 @@ zle -N self-insert url-quote-magic bindkey "^[m" copy-prev-shell-word ## jobs -setopt long_list_jobs
\ No newline at end of file +setopt long_list_jobs + +# Check for updates on initial load... +if [ "$DISABLE_AUTO_UPDATE" = "true" ] +then + return +else + /bin/sh $ZSH/tools/check_for_upgrade.sh +fi |