diff options
author | Karel Kočí <cynerd@email.cz> | 2022-06-20 12:07:04 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-06-20 12:07:04 +0200 |
commit | 5076e819be1e4cdbd88abad7c6db313701cad461 (patch) | |
tree | d6d9d32e2cb46063cc3f1467cb57fab5de3e8351 /bashrc.d/prompt | |
parent | f64e98b37125580992812c0dc1e96e6560792035 (diff) | |
download | shellrc-5076e819be1e4cdbd88abad7c6db313701cad461.tar.gz shellrc-5076e819be1e4cdbd88abad7c6db313701cad461.tar.bz2 shellrc-5076e819be1e4cdbd88abad7c6db313701cad461.zip |
bashrc.d: do not use our own variable to detect develop
Diffstat (limited to 'bashrc.d/prompt')
-rw-r--r-- | bashrc.d/prompt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc.d/prompt b/bashrc.d/prompt index 39ea1f4..b039243 100644 --- a/bashrc.d/prompt +++ b/bashrc.d/prompt @@ -3,7 +3,7 @@ PS1='$( if [ "$(id -u)" -eq "0" ]; then echo -n "\[\e[1;31m\]\u@\h:\[\e[1;34m\]\W\[\e[1;31m\]\$\[\e[0m\] " -elif [ "${_SHELLRC:-}" = "develop" ] || [ -n "${IN_NIX_SHELL}" ]; then +elif [ -n "${IN_NIX_SHELL}" ]; then echo -n "\[\e[1;33m\]\u@\h:\[\e[1;34m\]\W\[\e[1;33m\]\$\[\e[0m\] " else echo -n "\[\e[1;32m\]\u@\h:\[\e[1;34m\]\W\[\e[1;32m\]\$\[\e[0m\] " |