ohmyzsh/plugins/themes/themes.plugin.zsh
Joe H. Rahme 53c08153df Makes the theme plugin sane
A couple of improvements for the theme plugin

* Custom themes are looked for in `$ZSH_CUSTOM/themes`
* `lstheme` function doesn't cd to the directory anymore
2015-11-12 15:31:34 +01:00

23 lines
541 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/themes/$1.zsh-theme" ]
then
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
else
source "$ZSH/themes/$1.zsh-theme"
fi
fi
}
function lstheme
{
find "$ZSH"/themes "$ZSH_CUSTOM"/themes -name '*.zsh-theme' | sort -u | sed 's:.*/\(.*\)\.zsh-theme:\1:'
}