From 443c60578c8ee811b497a92eb75fc85714c86436 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 12 Sep 2025 10:27:19 +0200 Subject: [PATCH] feat(bash): add shell prompt colors (#35) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/35 --- .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)