1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-22 05:40:08 +00:00

systemd: remove newline from systemd prompt (#8772)

This commit is contained in:
Jon 2020-03-25 05:02:00 -04:00 committed by GitHub
parent 4d1202c70c
commit bcc3ee8ce8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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