diff options
-rw-r--r-- | etc/sh/vcs-ps1.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/sh/vcs-ps1.sh b/etc/sh/vcs-ps1.sh index 7cc528d..72df2c4 100644 --- a/etc/sh/vcs-ps1.sh +++ b/etc/sh/vcs-ps1.sh @@ -128,7 +128,7 @@ shell_status_level() { } shell_status_jobs() { - JOBS="$(jobs | grep -c autojump)" + JOBS="$(jobs | grep -cv autojump)" if [ "$JOBS" != 0 ]; then color -c red "$JOBS" fi |