From cf00c04d1b9af80eda513657cafc1ea194155b06 Mon Sep 17 00:00:00 2001
From: romkatv <roman.perepelitsa@gmail.com>
Date: Tue, 24 Sep 2019 14:29:21 +0200
Subject: [PATCH] aws: consult AWS_VAULT; hide if "default"

---
 internal/p10k.zsh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/internal/p10k.zsh b/internal/p10k.zsh
index e6a75c15..c569a408 100755
--- a/internal/p10k.zsh
+++ b/internal/p10k.zsh
@@ -857,8 +857,8 @@ prompt_anaconda() {
 ################################################################
 # AWS Profile
 prompt_aws() {
-  local aws_profile="${AWS_PROFILE:-$AWS_DEFAULT_PROFILE}"
-  if [[ -n "$aws_profile" ]]; then
+  local aws_profile="${AWS_VAULT:-${AWS_PROFILE:-$AWS_DEFAULT_PROFILE}}"
+  if [[ "$aws_profile" != (default|) ]]; then
     _p9k_prompt_segment "$0" red white 'AWS_ICON' 0 '' "${aws_profile//\%/%%}"
   fi
 }
@@ -1860,6 +1860,7 @@ prompt_dotnet_version() {
   _p9k_prompt_segment "$0" "magenta" "white" 'DOTNET_ICON' 0 '' "$_p9k_ret"
 }
 
+
 ################################################################
 # Segment to print a little OS icon
 prompt_os_icon() {