1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2025-05-22 15:48:06 +08:00

fix(agnoster): respect bg / fg user envs (#12897)

Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
This commit is contained in:
Pedro A. Aranda Gutiérrez 2025-04-19 20:19:23 +02:00 committed by GitHub
parent afbbdd6099
commit 95a0ece8d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,12 +36,12 @@ CURRENT_BG='NONE'
case ${SOLARIZED_THEME:-dark} in
light)
CURRENT_FG='white'
CURRENT_DEFAULT_FG='white'
CURRENT_FG=${CURRENT_FG:-'white'}
CURRENT_DEFAULT_FG=${CURRENT_DEFAULT_FG:-'white'}
;;
*)
CURRENT_FG='black'
CURRENT_DEFAULT_FG='default'
CURRENT_FG=${CURRENT_FG:-'black'}
CURRENT_DEFAULT_FG=${CURRENT_DEFAULT_FG:-'default'}
;;
esac