1
0
Fork 0

fix(random): fix ZSH_THEME_RANDOM_QUIET check ()

BREAKING CHANGE: For consistency, `ZSH_THEME_RANDOM_QUIET` now needs to
be `true` if you want to silence the "Random theme loaded" message in the
`random` theme.

The wiki specified that 1 or true was valid, while the code just
checked whether it was set to any value. Being more strict makes
sure that we're consistent with the rest of the Settings.

Fixes 
This commit is contained in:
Marc Cornellà 2021-12-26 19:24:19 +01:00
parent 70dfb6ef92
commit 96e473a1d6
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B

View file

@ -42,6 +42,6 @@ else
return 1
fi
if [[ -z "$ZSH_THEME_RANDOM_QUIET" ]]; then
if [[ "$ZSH_THEME_RANDOM_QUIET" = true ]]; then
echo "[oh-my-zsh] Random theme '${RANDOM_THEME}' loaded"
fi