From 83bb8603fd2b5ab1a83e820f4e80de918b611080 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 12 Sep 2025 10:26:06 +0200 Subject: [PATCH] feat(bash): add shell prompt colors --- .bash_profile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bash_profile b/.bash_profile index 9c4f190..d396bf9 100644 --- a/.bash_profile +++ b/.bash_profile @@ -3,6 +3,9 @@ if [ -f ~/.bashrc ]; then . ~/.bashrc fi +# Enable shell prompt colors (will not apply to command prompt). +export PS1='\[\033[1;36m\]\u\[\033[1;31m\]@\[\033[1;32m\]\h:\[\033[1;35m\]\w\[\033[1;31m\]\$\[\033[0m\] ' + # Export GPG_TTY for signing stuff with gpg export GPG_TTY=$(tty)