ohmyzsh/lib/theming.zsh
2011-12-06 12:34:53 -05:00

16 lines
380 B
Bash

set_theme() {
local themes
themes=({$OMZ,$ZSH}/themes/$1.zsh-theme(N))
if ! source $themes[1]; then
omz_log_msg "theme: $1 was not found. falling back to default."
source $ZSH/themes/default.zsh-theme
fi
}
random_theme() {
local themes
themes=({$OMZ,$ZSH}/themes/*.zsh-theme(N))
source $themes[$RANDOM%$#themes+1]
}
# compdef "_files -g '*.zsh'" set_theme