From bcc3ee8ce8749a83bd6139392ac23f51c9eecd79 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 25 Mar 2020 05:02:00 -0400 Subject: [PATCH] systemd: remove newline from systemd prompt (#8772) --- plugins/systemd/systemd.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/systemd/systemd.plugin.zsh b/plugins/systemd/systemd.plugin.zsh index f2d1d6f1c..c6fd52990 100644 --- a/plugins/systemd/systemd.plugin.zsh +++ b/plugins/systemd/systemd.plugin.zsh @@ -78,7 +78,7 @@ function systemd_prompt_info { local unit for unit in $@; do echo -n "$ZSH_THEME_SYSTEMD_PROMPT_PREFIX" - [[ -n "$ZSH_THEME_SYSTEMD_PROMPT_CAPS" ]] && echo "${(U)unit}:" || echo "$unit:" + [[ -n "$ZSH_THEME_SYSTEMD_PROMPT_CAPS" ]] && echo -n "${(U)unit}:" || echo -n "$unit:" if systemctl is-active $unit &>/dev/null; then echo -n "$ZSH_THEME_SYSTEMD_PROMPT_ACTIVE" else