diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2015-08-26 18:24:23 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2015-08-27 19:44:06 +0300 |
commit | b443c9be4a718a0b2d59902eb162c3906ee38735 (patch) | |
tree | 085c3f4eeb729fee6ccb6e768090892b331d5db2 /powerlevel9k.zsh-theme | |
parent | dd745634e87eedfb2e783d78d0b2d010cae2893a (diff) |
Moved `print_icon` to top in its own section "utility functions".
Diffstat (limited to 'powerlevel9k.zsh-theme')
-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 ae9da42a..b7b7858f 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 ################################################################ |