mirror of https://github.com/ohmyzsh/ohmyzsh.git
feat(systemd): add support for user units in prompt (#11417)
parent
a3c579bf27
commit
55e4e6c73b
|
@ -107,6 +107,8 @@ function systemd_prompt_info {
|
|||
|
||||
if systemctl is-active "$unit" &>/dev/null; then
|
||||
echo -n "$ZSH_THEME_SYSTEMD_PROMPT_ACTIVE"
|
||||
elif systemctl --user is-active "$unit" &>/dev/null; then
|
||||
echo -n "$ZSH_THEME_SYSTEMD_PROMPT_ACTIVE"
|
||||
else
|
||||
echo -n "$ZSH_THEME_SYSTEMD_PROMPT_NOTACTIVE"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue