mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-17 02:00:07 +00:00
aws: consult AWS_VAULT; hide if "default"
This commit is contained in:
parent
f6d361d70a
commit
cf00c04d1b
1 changed files with 3 additions and 2 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue