themes.plugin.zsh 494 Bytes
Newer Older
Roey Darwish Dror's avatar
Roey Darwish Dror committed
1
2
function theme
{
3
    if [ -z "$1" ] || [ "$1" = "random" ]; then
Roey Darwish Dror's avatar
Roey Darwish Dror committed
4
5
6
7
8
9
10
	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
11
	if [ -f "$ZSH_CUSTOM/themes/$1.zsh-theme" ]
Roey Darwish Dror's avatar
Roey Darwish Dror committed
12
	then
13
	    source "$ZSH_CUSTOM/themes/$1.zsh-theme"
Roey Darwish Dror's avatar
Roey Darwish Dror committed
14
15
16
17
18
19
20
21
22
23
24
	else
	    source "$ZSH/themes/$1.zsh-theme"
	fi
    fi
}

function lstheme
{
    cd $ZSH/themes
    ls *zsh-theme | sed 's,\.zsh-theme$,,'
}