Unverified Commit bcc3ee8c authored by Jon's avatar Jon Committed by GitHub
Browse files

systemd: remove newline from systemd prompt (#8772)

parent 4d1202c7
...@@ -78,7 +78,7 @@ function systemd_prompt_info { ...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment