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

25 lines
494 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
{
cd $ZSH/themes
ls *zsh-theme | sed 's,\.zsh-theme$,,'
}