Merge pull request #1191 from r-darwish/themes-plugin

Themes plugin
This commit is contained in:
Robby Russell 2012-12-02 12:50:40 -08:00
commit d19e01b140
2 changed files with 27 additions and 0 deletions

3
plugins/themes/_theme Normal file
View File

@ -0,0 +1,3 @@
#compdef theme
_arguments "1: :($(lstheme | tr "\n" " "))"

View File

@ -0,0 +1,24 @@
function theme
{
if [ "$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"
else
source "$ZSH/themes/$1.zsh-theme"
fi
fi
}
function lstheme
{
cd $ZSH/themes
ls *zsh-theme | sed 's,\.zsh-theme$,,'
}