aboutsummaryrefslogtreecommitdiff
path: root/powerlevel9k.zsh-theme
diff options
context:
space:
mode:
authorAlexara Wu <alexarawu@outlook.com>2018-07-11 15:55:27 +0300
committerAlexara Wu <alexarawu@outlook.com>2018-07-11 15:55:27 +0300
commitfc39d9d6b88ad02b1cebb1284aaa272e5b2af42c (patch)
treed5ddedcf708515ad6263c256c01a4dab195096ac /powerlevel9k.zsh-theme
parentd031b3e03522d47607173ebda89e7558b622a322 (diff)
Fix `pyenv` segment
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-xpowerlevel9k.zsh-theme22
1 files changed, 16 insertions, 6 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme
index c1ea754f..0dc7d6fe 100755
--- a/powerlevel9k.zsh-theme
+++ b/powerlevel9k.zsh-theme
@@ -1260,11 +1260,11 @@ prompt_ram() {
"$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "$(printSizeHumanReadable "$ramfree" $base)" 'RAM_ICON'
}
-
+################################################################
+# Segment to display rbenv information
set_default POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW false
-# rbenv information
prompt_rbenv() {
- if command which rbenv 2>/dev/null >&2; then
+ if ! [ -x "$(command -v rbenv)" ]; then
local rbenv_version_name="$(rbenv version-name)"
local rbenv_global="$(rbenv global)"
@@ -1628,11 +1628,21 @@ prompt_virtualenv() {
}
################################################################
-# pyenv: current active python version (with restrictions)
+# Segment to display pyenv information
# https://github.com/pyenv/pyenv#choosing-the-python-version
+set_default POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW false
prompt_pyenv() {
- if [[ -n "$PYENV_VERSION" ]]; then
- "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$PYENV_VERSION" 'PYTHON_ICON'
+ if ! [ -x "$(command -v pyenv)" ]; then
+ if [[ -n "$PYENV_VERSION" ]]; then
+ "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$PYENV_VERSION" 'PYTHON_ICON'
+ else
+ local pyenv_version_name="$(pyenv version-name)"
+ local pyenv_global="$(pyenv version-file-read $(pyenv root)/version)"
+ if [[ $pyenv_version_name == $pyenv_global && "$POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW" = false ]]; then
+ return
+ fi
+ "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$pyenv_version_name" 'PYTHON_ICON'
+ fi
fi
}