0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/themes/themes.plugin.zsh

27 lines
653 B
Bash
Raw Normal View History

2012-06-22 19:25:44 +02:00
function theme
{
if [ -z "$1" ] || [ "$1" = "random" ]; then
2012-06-22 19:25:44 +02:00
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" ]
2012-06-22 19:25:44 +02:00
then
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
2012-06-22 19:25:44 +02:00
else
source "$ZSH/themes/$1.zsh-theme"
fi
fi
}
function lstheme
{
# Resources:
# http://zsh.sourceforge.net/Doc/Release/Expansion.html#Modifiers
# http://zsh.sourceforge.net/Doc/Release/Expansion.html#Glob-Qualifiers
print -l {$ZSH,$ZSH_CUSTOM}/themes/*.zsh-theme(N:t:r)
2012-06-22 19:25:44 +02:00
}