Compare commits

..

1 Commits

Author SHA1 Message Date
2c8a8287fc Attempt to special case displaying hostname in prompt 2019-12-15 17:33:11 -05:00

View File

@ -12,7 +12,7 @@ no_color="\[\033[0m\]"
# Interactive Prompt: "$ " in green
export PS1="${green}\$${no_color} "
if [ "${HOSTNAME}" != "crypt" ]; then
if [ "${HOSTNAME}" != "crypt"]; then
PS1="${PS1}${blue}${HOSTNAME}${PS1}"
fi