浏览代码

systemd: remove newline from systemd prompt (#8772)

Jon 5 年之前
父节点
当前提交
bcc3ee8ce8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/systemd/systemd.plugin.zsh

+ 1 - 1
plugins/systemd/systemd.plugin.zsh

@@ -78,7 +78,7 @@ function systemd_prompt_info {
   local unit
   local unit
   for unit in $@; do
   for unit in $@; do
     echo -n "$ZSH_THEME_SYSTEMD_PROMPT_PREFIX"
     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
     if systemctl is-active $unit &>/dev/null; then
         echo -n "$ZSH_THEME_SYSTEMD_PROMPT_ACTIVE" 
         echo -n "$ZSH_THEME_SYSTEMD_PROMPT_ACTIVE" 
     else
     else