From ea55d530cf5da49668b2084d3c914c8941733228 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 31 Oct 2019 03:15:56 +0100 Subject: [PATCH] Fix display of background jobs in bash prompt --- dotfiles/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc index f005c55..25fe393 100644 --- a/dotfiles/.bashrc +++ b/dotfiles/.bashrc @@ -138,7 +138,7 @@ __ps1_set() { PS1="\n[$color\u@\h $PS1_PWD\w" # [user@host pwd PS1+="$PS1_GIT$(__git_ps1 ' %s')" # git status (if in repo) PS1+="$PS1_VENV$(__ps1_venv ' %s')" # python virtual env (if active) - PS1+="$PS1_JOBS$(__ps1_jobs ' $s')" # background jobs (if any) + PS1+="$PS1_JOBS$(__ps1_jobs ' %s')" # background jobs (if any) PS1+="$PS1_RESET]\n" # ] PS1+="$status$prompt " # last status & prompt }