1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

feat(systemd): add support for user units in prompt (#11417)

This commit is contained in:
the.brain.w
2022-12-30 11:52:18 +01:00
committed by GitHub
parent a3c579bf27
commit 55e4e6c73b

View File

@@ -107,6 +107,8 @@ function systemd_prompt_info {
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"
elif systemctl --user is-active "$unit" &>/dev/null; then
echo -n "$ZSH_THEME_SYSTEMD_PROMPT_ACTIVE"
else else
echo -n "$ZSH_THEME_SYSTEMD_PROMPT_NOTACTIVE" echo -n "$ZSH_THEME_SYSTEMD_PROMPT_NOTACTIVE"
fi fi