1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-25 04:30:46 +00:00

[detect-virt] quickfix for unnecessary information in prompt

This commit is contained in:
Christian Rebischke 2017-04-23 15:39:57 +02:00
parent 95be97ea5f
commit dc2b5a833f
No known key found for this signature in database
GPG key ID: D21461E3DFE2060D

View file

@ -768,20 +768,19 @@ prompt_history() {
# Detection for virtualization (systemd based systems only) # Detection for virtualization (systemd based systems only)
prompt_detect_virt() { prompt_detect_virt() {
if ! command -v systemd-detect-virt;then if ! command -v systemd-detect-virt > /dev/null; then
return return
fi fi
local virt=$(systemd-detect-virt) local virt=$(systemd-detect-virt)
local color="yellow"
if [[ "$virt" == "none" ]]; then if [[ "$virt" == "none" ]]; then
if [[ "$(ls -di / | grep -o 2)" != "2" ]]; then if [[ "$(ls -di / | grep -o 2)" != "2" ]]; then
virt="chroot" virt="chroot"
"$1_prompt_segment" "$0" "$2" "$color" "$DEFAULT_COLOR" "$virt" "$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "$virt"
else else
; ;
fi fi
else else
"$1_prompt_segment" "$0" "$2" "$color" "$DEFAULT_COLOR" "$virt" "$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "$virt"
fi fi
} }