mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-06-24 19:41:26 +02:00
fix(agnoster): respect bg / fg user envs (#12897)
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
This commit is contained in:
parent
afbbdd6099
commit
95a0ece8d3
@ -36,12 +36,12 @@ CURRENT_BG='NONE'
|
|||||||
|
|
||||||
case ${SOLARIZED_THEME:-dark} in
|
case ${SOLARIZED_THEME:-dark} in
|
||||||
light)
|
light)
|
||||||
CURRENT_FG='white'
|
CURRENT_FG=${CURRENT_FG:-'white'}
|
||||||
CURRENT_DEFAULT_FG='white'
|
CURRENT_DEFAULT_FG=${CURRENT_DEFAULT_FG:-'white'}
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
CURRENT_FG='black'
|
CURRENT_FG=${CURRENT_FG:-'black'}
|
||||||
CURRENT_DEFAULT_FG='default'
|
CURRENT_DEFAULT_FG=${CURRENT_DEFAULT_FG:-'default'}
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user