Compare commits

..

2 Commits

Author SHA1 Message Date
nixy 9c1fba6459 Fix application script to actually work 2019-12-15 17:37:37 -05:00
nixy a1b9a98969 Attempt to special case displaying hostname in prompt 2019-12-15 17:34:56 -05:00
14 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ no_color="\[\033[0m\]"
# Interactive Prompt: "$ " in green # Interactive Prompt: "$ " in green
export PS1="${green}\$${no_color} " export PS1="${green}\$${no_color} "
if [ "${HOSTNAME}" != "crypt" ]; then if [ "${HOSTNAME}" != "crypt" ]; then
PS1="${PS1}${blue}${HOSTNAME} ${PS1}" PS1="${PS1}${blue}${HOSTNAME}${PS1}"
fi fi
# Continuation Prompt: "> " in cyan # Continuation Prompt: "> " in cyan