summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Hilburn <bhilburn@gmail.com>2016-05-27 18:53:02 +0300
committerBen Hilburn <bhilburn@gmail.com>2016-05-27 18:53:02 +0300
commit41888bf2a96e13a33db696c51963986472c9d91f (patch)
tree931f8ce0d5d01cce2cb3d0372124703b9bb36b00
parent66ece8677312bbc709a9bf83c9c7d8efdfdd2024 (diff)
parent086cd1fdcf17f722602a72718520582556ceb18e (diff)
Merge pull request #260 from thuandt/python-icon
PYTHON ICON for virtualenv prompt
-rw-r--r--functions/icons.zsh9
-rwxr-xr-xpowerlevel9k.zsh-theme2
2 files changed, 7 insertions, 4 deletions
diff --git a/functions/icons.zsh b/functions/icons.zsh
index 6de09ee8..b4a1f32f 100644
--- a/functions/icons.zsh
+++ b/functions/icons.zsh
@@ -69,7 +69,8 @@ case $POWERLEVEL9K_MODE in
VCS_REMOTE_BRANCH_ICON ' '$'\UE804 ' # 
VCS_GIT_ICON $'\UE20E ' # 
VCS_HG_ICON $'\UE1C3 ' # 
- RUST_ICON ''
+ RUST_ICON ''
+ PYTHON_ICON ''
)
;;
'awesome-fontconfig')
@@ -121,7 +122,8 @@ case $POWERLEVEL9K_MODE in
VCS_REMOTE_BRANCH_ICON ' '$'\UF204 ' # 
VCS_GIT_ICON $'\UF113 ' # 
VCS_HG_ICON $'\UF0C3 ' # 
- RUST_ICON $'\UE6A8' # 
+ RUST_ICON $'\UE6A8' # 
+ PYTHON_ICON $'\UE63C' # 
)
;;
*)
@@ -173,7 +175,8 @@ case $POWERLEVEL9K_MODE in
VCS_REMOTE_BRANCH_ICON $'\u2192' # →
VCS_GIT_ICON ''
VCS_HG_ICON ''
- RUST_ICON ''
+ RUST_ICON ''
+ PYTHON_ICON ''
)
;;
esac
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme
index 16f4589d..4206bf51 100755
--- a/powerlevel9k.zsh-theme
+++ b/powerlevel9k.zsh-theme
@@ -931,7 +931,7 @@ prompt_vi_mode() {
prompt_virtualenv() {
local virtualenv_path="$VIRTUAL_ENV"
if [[ -n "$virtualenv_path" && "$VIRTUAL_ENV_DISABLE_PROMPT" != true ]]; then
- "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "($(basename "$virtualenv_path"))"
+ "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$(basename "$virtualenv_path")" 'PYTHON_ICON'
fi
}