aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.markdown2
-rw-r--r--zsh/zshrc.d/prompt.zsh2
2 files changed, 3 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 23457131..5c9dc392 100644
--- a/README.markdown
+++ b/README.markdown
@@ -271,6 +271,8 @@ Just enough configuration to coax it into reading `~/.profile` and `~/.shrc`.
These are experimental; I do not like Zsh much at the moment. The files started
as a joke (`exec bash`).
+`zsh` shells default to having a prompt coloured cyan.
+
### GnuPG
The configuration for GnuPG is intended to follow [RiseUp's OpenPGP best
diff --git a/zsh/zshrc.d/prompt.zsh b/zsh/zshrc.d/prompt.zsh
index 0ac2be55..4b98c125 100644
--- a/zsh/zshrc.d/prompt.zsh
+++ b/zsh/zshrc.d/prompt.zsh
@@ -41,7 +41,7 @@ prompt() {
# Bold and color the prompt if it looks like we can
if (( $({ tput colors || tput Co ; } 2>/dev/null) >= 8 )) ; then
- PS1='%B%F{green}'$PS1'%f%b'
+ PS1='%B%F{cyan}'$PS1'%f%b'
fi
# Add a space and define the rest of the prompts