From 881ce33263c596d8cbe4d9099345d48de997c408 Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Sun, 11 Dec 2016 05:16:02 +0100 Subject: [PATCH] added virtualization detection with systemd --- README.md | 1 + powerlevel9k.zsh-theme | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/README.md b/README.md index 2d031706..f72589cb 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,7 @@ The segments that are currently available are: * [`custom_command`](#custom_command) - Create a custom segment to display the output of an arbitrary command. * [`todo`](http://todotxt.com/) - Shows the number of tasks in your todo.txt tasks file. +* `detect-virt` - Virtualization detection with systemd --------------------------------------------------------------------------------- diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index c06d1286..49e066a5 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -538,6 +538,26 @@ prompt_history() { "$1_prompt_segment" "$0" "$2" "244" "$DEFAULT_COLOR" '%h' } +# Detection for virtualization (systemd based systems only) +prompt_detect_virt() { + if ! command -v systemd-detect-virt;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" "$virt" "" + else + ; + fi + else + "$1_prompt_segment" "$0" "$2" "$color" "$virt" "" + fi +} + + prompt_icons_test() { for key in ${(@k)icons}; do # The lower color spectrum in ZSH makes big steps. Choosing