aboutsummaryrefslogtreecommitdiff
path: root/internal/p10k.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'internal/p10k.zsh')
-rwxr-xr-xinternal/p10k.zsh5
1 files 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() {