1

Add a color code for docker containers

This commit is contained in:
Evan Pratten 2023-07-06 14:24:09 -04:00
parent 029db6e062
commit 3132af01d3

View File

@ -8,6 +8,8 @@ NEWLINE=$'\n'
# Use colors to signal local vs remote connections
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
HOST_COLOR="yellow"
elif [ "$EWCONFIG_IN_DOCKER" = "1" ]; then
HOST_COLOR="blue"
else
HOST_COLOR="green"
fi