From 513c0d6faca3c220ccbc1d35c09f80e5e5e975bc Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 28 Mar 2026 12:08:16 -0700 Subject: [PATCH] Add colors for PS1 prompts. --- rc_shared.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/rc_shared.sh b/rc_shared.sh index 28db791..eeaef81 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -10,6 +10,20 @@ # Environment Usability export PATH="$PATH:~/bin-shared:~/.bin-shared" +# PS1 Colors +PURPLE=`tput setaf 55` +ORANGE=`tput setaf 208` +GREEN=`tput setaf 34` + +RED=`tput setaf 196` +SCARLET=`tput setaf 160` +YELLOW=`tput setaf 226` + +GRAY=`tput setaf 243` + +RESET=`tput sgr0` +BOLD=`tput bold` + ## Aliases ##