You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
793 B
27 lines
793 B
function theme { |
|
: ${1:=random} # Use random theme if none provided |
|
|
|
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" |
|
elif [[ -f "$ZSH/themes/$1.zsh-theme" ]]; then |
|
source "$ZSH/themes/$1.zsh-theme" |
|
else |
|
echo "$0: Theme '$1' not found" |
|
return 1 |
|
fi |
|
} |
|
|
|
function _theme { |
|
_arguments "1: :($(lstheme))" |
|
} |
|
|
|
compdef _theme theme |
|
|
|
function lstheme { |
|
# Resources: |
|
# http://zsh.sourceforge.net/Doc/Release/Expansion.html#Modifiers |
|
# http://zsh.sourceforge.net/Doc/Release/Expansion.html#Glob-Qualifiers |
|
print "$ZSH_CUSTOM"/*.zsh-theme(N:t:r) {"$ZSH_CUSTOM","$ZSH"}/themes/*.zsh-theme(N:t:r) |
|
}
|
|
|