themes.plugin.zsh 653 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
	else
	    source "$ZSH/themes/$1.zsh-theme"
	fi
    fi
}

function lstheme
{
22
23
24
25
    # 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)
Roey Darwish Dror's avatar
Roey Darwish Dror committed
26
}