diff options
author | Robby Russell <robby@planetargon.com> | 2011-06-20 01:28:34 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-06-20 01:28:34 -0700 |
commit | 3552423de3d5ae439dc815b7f9c4cbeab3fbebe8 (patch) | |
tree | b0517c10ebd6af08738bfe8e6a6c499cad12017d /oh-my-zsh.sh | |
parent | 279cf279a67f274bc7ee1e4cb17231eff2694317 (diff) | |
parent | 527355eae3c8b019ce203c38b6aa5ffd818c3640 (diff) | |
download | zsh-3552423de3d5ae439dc815b7f9c4cbeab3fbebe8.tar.gz zsh-3552423de3d5ae439dc815b7f9c4cbeab3fbebe8.tar.bz2 zsh-3552423de3d5ae439dc815b7f9c4cbeab3fbebe8.zip |
Merge pull request #429 from mhitza/master
Optional themes
Diffstat (limited to 'oh-my-zsh.sh')
-rw-r--r-- | oh-my-zsh.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index d72d90cf9..c4522491b 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -43,6 +43,9 @@ then source "$RANDOM_THEME" echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..." else - source "$ZSH/themes/$ZSH_THEME.zsh-theme" + if [ ! "$ZSH_THEME" = "" ] + then + source "$ZSH/themes/$ZSH_THEME.zsh-theme" + fi fi |