1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-06-29 15:50:27 +00:00

Moved each theme under its own directory and changed the file extension.

This commit is contained in:
Sorin Ionescu 2011-07-13 13:03:11 -04:00
parent 4727e12013
commit b34e9e0022
90 changed files with 3 additions and 4 deletions

View File

@ -29,15 +29,14 @@ done
# Load the theme. # Load the theme.
if [[ "$ZSH_THEME" == "random" ]]; then if [[ "$ZSH_THEME" == "random" ]]; then
themes=($ZSH/themes/*.zsh-theme) themes=($ZSH/themes/**/*.theme.zsh)
theme_index=${#themes[@]} theme_index=${#themes[@]}
(( theme_index=((RANDOM % theme_index) + 1) )) (( theme_index=((RANDOM % theme_index) + 1) ))
random_theme="${themes[$theme_index]}" random_theme="${themes[$theme_index]}"
source "$random_theme" source "$random_theme"
else else
if [ ! "$ZSH_THEME" = "" ] if [[ -f "$ZSH/themes/$ZSH_THEME/$ZSH_THEME.theme.zsh" ]]; then
then source "$ZSH/themes/$ZSH_THEME/$ZSH_THEME.theme.zsh"
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
fi fi
fi fi