mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-03 04:20:01 +02:00
Improve code readability
This commit is contained in:
parent
2f7674adc3
commit
ea4d4c56d2
1 changed files with 13 additions and 15 deletions
|
|
@ -1,22 +1,20 @@
|
||||||
function theme
|
function theme
|
||||||
{
|
{
|
||||||
if [ -z "$1" ] || [ "$1" = "random" ]; then
|
if [ -z "$1" ] || [ "$1" = "random" ]; then
|
||||||
themes=($ZSH/themes/*zsh-theme)
|
themes=($ZSH/themes/*zsh-theme)
|
||||||
N=${#themes[@]}
|
N=${#themes[@]}
|
||||||
((N=(RANDOM%N)+1))
|
((N=(RANDOM%N)+1))
|
||||||
RANDOM_THEME=${themes[$N]}
|
RANDOM_THEME=${themes[$N]}
|
||||||
source "$RANDOM_THEME"
|
source "$RANDOM_THEME"
|
||||||
echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
|
echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
|
||||||
else
|
else
|
||||||
if [ -f "$ZSH_CUSTOM/$1.zsh-theme" ]
|
if [ -f "$ZSH_CUSTOM/$1.zsh-theme" ]; then
|
||||||
then
|
source "$ZSH_CUSTOM/$1.zsh-theme"
|
||||||
source "$ZSH_CUSTOM/$1.zsh-theme"
|
elif [ -f "$ZSH_CUSTOM/themes/$1.zsh-theme" ]; then
|
||||||
elif [ -f "$ZSH_CUSTOM/themes/$1.zsh-theme" ]
|
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
|
||||||
then
|
else
|
||||||
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
|
source "$ZSH/themes/$1.zsh-theme"
|
||||||
else
|
fi
|
||||||
source "$ZSH/themes/$1.zsh-theme"
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue