From f34e02c6414d85975288552fdbf32124c974e978 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 28 Mar 2026 12:20:14 -0700 Subject: [PATCH] Ensure colors are exported! --- rc_shared.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/rc_shared.sh b/rc_shared.sh index bf62b62..4065408 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -7,18 +7,18 @@ export PATH="$PATH:~/bin-shared:~/.bin-shared" # PS1 Colors -PURPLE=`tput setaf 55` -ORANGE=`tput setaf 208` -GREEN=`tput setaf 34` +export PURPLE=`tput setaf 55` +export ORANGE=`tput setaf 208` +export GREEN=`tput setaf 34` -RED=`tput setaf 196` -SCARLET=`tput setaf 160` -YELLOW=`tput setaf 226` +export RED=`tput setaf 196` +export SCARLET=`tput setaf 160` +export YELLOW=`tput setaf 226` -GRAY=`tput setaf 243` +export GRAY=`tput setaf 243` -RESET=`tput sgr0` -BOLD=`tput bold` +export RESET=`tput sgr0` +export BOLD=`tput bold` ## Aliases ##