mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-27 03:14:56 +01:00
Improve code readability
This commit is contained in:
parent
2f7674adc3
commit
ea4d4c56d2
1 changed files with 13 additions and 15 deletions
|
|
@ -8,11 +8,9 @@ function theme
|
||||||
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" ]
|
elif [ -f "$ZSH_CUSTOM/themes/$1.zsh-theme" ]; then
|
||||||
then
|
|
||||||
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
|
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
|
||||||
else
|
else
|
||||||
source "$ZSH/themes/$1.zsh-theme"
|
source "$ZSH/themes/$1.zsh-theme"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue