diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2017-05-23 04:34:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-23 04:34:42 +0300 |
commit | 65f5f7a90fbac578331581dc0dab79c068f75fe2 (patch) | |
tree | b7c1f043cf85c1b26634c9e5be3b70174167c493 | |
parent | 6f7e88474d3990ad296652274469bcc8735378c1 (diff) | |
parent | e0a6246ecc81e94e1f402cac1ddd67d34c1ac5a1 (diff) |
Merge pull request #531 from shibumi/next
swapped colors for virtualization detection
-rwxr-xr-x | powerlevel9k.zsh-theme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 2f2a682d..fad22b1c 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -807,12 +807,12 @@ prompt_detect_virt() { if [[ "$virt" == "none" ]]; then if [[ "$(ls -di / | grep -o 2)" != "2" ]]; then virt="chroot" - "$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "$virt" + "$1_prompt_segment" "$0" "$2" "$DEFAULT_COLOR" "yellow" "$virt" else ; fi else - "$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "$virt" + "$1_prompt_segment" "$0" "$2" "$DEFAULT_COLOR" "yellow" "$virt" fi } |