summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Hilburn <bhilburn@gmail.com>2017-04-24 21:06:09 +0300
committerGitHub <noreply@github.com>2017-04-24 21:06:09 +0300
commit954c8697e70841f6c2bcc11257d1b42859e22d66 (patch)
tree3e414580ee5bc428603a43d17450a6215ebbd7b6
parent95be97ea5f1df05427d9bca6e177ccbc61eb917b (diff)
parentdc2b5a833ff55cadb94cc7fa539884d02630ccdc (diff)
Merge pull request #502 from shibumi/detect-virt-debugging
[detect-virt] quickfix for unnecessary information in prompt
-rwxr-xr-xpowerlevel9k.zsh-theme7
1 files changed, 3 insertions, 4 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme
index ce38ea7a..3eba616c 100755
--- a/powerlevel9k.zsh-theme
+++ b/powerlevel9k.zsh-theme
@@ -768,20 +768,19 @@ prompt_history() {
# Detection for virtualization (systemd based systems only)
prompt_detect_virt() {
- if ! command -v systemd-detect-virt;then
+ if ! command -v systemd-detect-virt > /dev/null; then
return
fi
local virt=$(systemd-detect-virt)
- local color="yellow"
if [[ "$virt" == "none" ]]; then
if [[ "$(ls -di / | grep -o 2)" != "2" ]]; then
virt="chroot"
- "$1_prompt_segment" "$0" "$2" "$color" "$DEFAULT_COLOR" "$virt"
+ "$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "$virt"
else
;
fi
else
- "$1_prompt_segment" "$0" "$2" "$color" "$DEFAULT_COLOR" "$virt"
+ "$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "$virt"
fi
}