diff options
author | lemaral <lemaral@users.noreply.github.com> | 2017-12-31 16:18:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-31 16:18:49 +0300 |
commit | 42a0125f4cb38c781d9da1511b6d0042eea9dc84 (patch) | |
tree | 9c634e65be1eba7b9e8b2b89fb2b9c20d9ead04a /powerlevel9k.zsh-theme | |
parent | 7f9669d28a52b566560c97f948d9ddf6366c0580 (diff) |
Fix newline issue
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 54528fc7..3f25d195 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -564,7 +564,8 @@ prompt_public_ip() { break done fi - $1_prompt_segment "$0" "$2" "$DEFAULT_COLOR" "$DEFAULT_COLOR_INVERTED" "${public_ip}" "$icon" fi + $1_prompt_segment "$0" "$2" "$DEFAULT_COLOR" "$DEFAULT_COLOR_INVERTED" "${public_ip}" "$icon" + fi } # Context: user@hostname (who am I and where am I) |