2012-06-22 17:25:44 +00:00
|
|
|
function theme
|
|
|
|
{
|
2014-07-17 04:21:09 +00:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
1="random"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "$ZSH_CUSTOM/$1.zsh-theme" ]
|
|
|
|
then
|
|
|
|
source "$ZSH_CUSTOM/$1.zsh-theme"
|
|
|
|
elif [ -f "$ZSH_CUSTOM/themes/$1.zsh-theme" ]
|
|
|
|
then
|
|
|
|
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
|
2012-06-22 17:25:44 +00:00
|
|
|
else
|
2014-07-17 04:21:09 +00:00
|
|
|
source "$ZSH/themes/$1.zsh-theme"
|
2012-06-22 17:25:44 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function lstheme
|
|
|
|
{
|
2018-10-08 16:25:20 +00:00
|
|
|
# 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 17:25:44 +00:00
|
|
|
}
|