aboutsummaryrefslogtreecommitdiff
path: root/.config/shell/sources
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-02-17 13:21:02 +0100
committerPatrick Spek <p.spek@tyil.nl>2020-02-17 13:21:02 +0100
commit8979b768965109f39730ed2a431fbf2e4d369502 (patch)
tree593abd9df9b6e169c5bcc2964ec9c81c87d48a0e /.config/shell/sources
parent7d3e27b4ffa9973bed54fde7a46880231713e190 (diff)
Update bash PS1
This should bring the prompt for interactive Bash usage in line with the prompt for zsh. The colors are slightly different, but the information is the same.
Diffstat (limited to '.config/shell/sources')
-rw-r--r--.config/shell/sources9
1 files changed, 8 insertions, 1 deletions
diff --git a/.config/shell/sources b/.config/shell/sources
index 5573d62..aa3e273 100644
--- a/.config/shell/sources
+++ b/.config/shell/sources
@@ -33,6 +33,13 @@ PATH="${PATH}:/usr/local/sbin"
PATH="${PATH}:/usr/games/bin"
PATH="${PATH}:/opt/bin"
+# Load color definitions if they exist
+if [ -f "$HOME/.config/shell/colors/$SHORTSHELL" ]
+then
+ [ "$DEBUG_DOTFILES" ] && printf " Loading color definitions\n"
+ . "$HOME/.config/shell/colors/$SHORTSHELL"
+fi
+
# Nix package manager
if [ -f "$HOME/.nix-profile/etc/profile.d/nix.sh" ]
then
@@ -67,7 +74,7 @@ then
if [ -d "$GEMDIR" ]
then
- [ "$DEBUG_DOTFILES" ] && echo "Extending PATH with $GEMDIR"
+ [ "$DEBUG_DOTFILES" ] && echo " Extending PATH with $GEMDIR"
PATH="$GEMDIR:$PATH"
fi
fi