This commit is contained in:
Zhang Sen 2017-05-02 02:17:27 +00:00 committed by GitHub
commit 78f5e8ff7f

View file

@ -8,7 +8,10 @@ function theme
source "$RANDOM_THEME"
echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
else
if [ -f "$ZSH_CUSTOM/$1.zsh-theme" ]
if [ -f "$ZSH_CUSTOM/themes/$1.zsh-theme" ]
then
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
elif [ -f "$ZSH_CUSTOM/$1.zsh-theme" ]
then
source "$ZSH_CUSTOM/$1.zsh-theme"
else
@ -19,6 +22,14 @@ function theme
function lstheme
{
cd $ZSH/themes
ls *zsh-theme | sed 's,\.zsh-theme$,,'
# default themes
ls $ZSH/themes | grep '.zsh-theme$' | sed 's,\.zsh-theme$,,'
# custom themes
ls $ZSH_CUSTOM | grep '.zsh-theme$' | sed 's,\.zsh-theme$,,'
if [ -d "$ZSH_CUSTOM/themes" ]
then
ls $ZSH_CUSTOM/themes | grep '.zsh-theme$' | sed 's,\.zsh-theme$,,'
fi
}