From db560f6ce35fc4467ad6ef84fd588eda619b8fb2 Mon Sep 17 00:00:00 2001 From: Rob Lugton Date: Tue, 13 Feb 2018 11:09:47 +1100 Subject: [PATCH] add `AWS:` prefix to segment --- themes/agnoster.zsh-theme | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/agnoster.zsh-theme b/themes/agnoster.zsh-theme index 2ab090b5..c2e5e2c7 100644 --- a/themes/agnoster.zsh-theme +++ b/themes/agnoster.zsh-theme @@ -221,9 +221,9 @@ prompt_aws_profile() { local aws_profile="$AWS_PROFILE" if [[ -n $aws_profile ]]; then if [[ $aws_profile == *"-prod" || $aws_profile == *"production"* ]]; then - prompt_segment red yellow "$aws_profile" + prompt_segment red yellow "AWS: $aws_profile" else - prompt_segment green black "$aws_profile" + prompt_segment green black "AWS: $aws_profile" fi fi }