diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2015-08-26 18:24:23 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2015-08-26 18:24:23 +0300 |
commit | 66877efadeab78d8a517c20d2dd879f08d754e3a (patch) | |
tree | 4909916860773a5d2e944140efd47530be8d52d0 | |
parent | 1005a7c6fb120cb4b57d60feacc022cef14b1ce0 (diff) |
Moved `print_icon` to top in its own section "utility functions".
-rw-r--r-- | powerlevel9k.zsh-theme | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 8a7b4d50..654bb0b5 100644 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -45,6 +45,21 @@ #set -o xtrace ################################################################ +# Utility functions +################################################################ + +function print_icon() { + local icon_name=$1 + local ICON_USER_VARIABLE=POWERLEVEL9K_${icon_name} + local USER_ICON=${(P)ICON_USER_VARIABLE} + if [[ -n "$USER_ICON" ]]; then + echo -n $USER_ICON + else + echo -n ${icons[$icon_name]} + fi +} + +################################################################ # Icons ################################################################ @@ -190,17 +205,6 @@ if [[ "$OS" == 'OSX' ]]; then fi fi -function print_icon() { - local icon_name=$1 - local ICON_USER_VARIABLE=POWERLEVEL9K_${icon_name} - local USER_ICON=${(P)ICON_USER_VARIABLE} - if [[ -n "$USER_ICON" ]]; then - echo -n $USER_ICON - else - echo -n ${icons[$icon_name]} - fi -} - ################################################################ # color scheme ################################################################ |