oh-my-zsh/plugins/themes/themes.plugin.zsh
Mulia Arifandi Nasution 2f7674adc3 Also check custom themes in $ZSH_CUSTOM/themes
According to [Overriding and adding themes][1] documentation,
the location of custom themes should be on `$ZSH_CUSTOM/themes`

```
zsh_custom
└── themes
    └── my_awesome_theme.zsh-theme
```

[1]: https://github.com/robbyrussell/oh-my-zsh/wiki/Customization#overriding-and-adding-themes
2015-10-08 07:14:06 +07:00

28 lines
588 B
Bash

function theme
{
if [ -z "$1" ] || [ "$1" = "random" ]; then
themes=($ZSH/themes/*zsh-theme)
N=${#themes[@]}
((N=(RANDOM%N)+1))
RANDOM_THEME=${themes[$N]}
source "$RANDOM_THEME"
echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
else
if [ -f "$ZSH_CUSTOM/$1.zsh-theme" ]
then
source "$ZSH_CUSTOM/$1.zsh-theme"
elif [ -f "$ZSH_CUSTOM/themes/$1.zsh-theme" ]
then
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
else
source "$ZSH/themes/$1.zsh-theme"
fi
fi
}
function lstheme
{
cd $ZSH/themes
ls *zsh-theme | sed 's,\.zsh-theme$,,'
}