From 772a367365678b6a1e6c5684bb640cedd6745580 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Tue, 17 Jan 2023 21:31:47 +0100 Subject: [PATCH] prompts/disco: Use $fish_color_status for the status That's what it's for. --- share/tools/web_config/sample_prompts/disco.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/tools/web_config/sample_prompts/disco.fish b/share/tools/web_config/sample_prompts/disco.fish index 6d981bb56..8da59d83f 100644 --- a/share/tools/web_config/sample_prompts/disco.fish +++ b/share/tools/web_config/sample_prompts/disco.fish @@ -36,7 +36,7 @@ function fish_prompt # Prompt status only if it's not 0 set -l prompt_status - test $last_status -ne 0; and set prompt_status (set_color $fish_color_error)"[$last_status]$normal" + test $last_status -ne 0; and set prompt_status (set_color $fish_color_status)"[$last_status]$normal" # Only show host if in SSH or container # Store this in a global variable because it's slow and unchanging