From 082a521b3c7d75098ac27bcf76983d8ef0b0046a Mon Sep 17 00:00:00 2001 From: "heavy@hetzner" Date: Mon, 24 Nov 2025 09:09:16 +0000 Subject: [PATCH] (prompt): Fix starship check. --- dot_bashrc.d/executable_10.prompt.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_bashrc.d/executable_10.prompt.tmpl b/dot_bashrc.d/executable_10.prompt.tmpl index 6113cb8..d41c0ba 100644 --- a/dot_bashrc.d/executable_10.prompt.tmpl +++ b/dot_bashrc.d/executable_10.prompt.tmpl @@ -150,7 +150,7 @@ else TYPE=" $myType " fi -if command -v 2>&1 >/dev/null; then +if command -v starship 2>&1 >/dev/null; then echo "Found starship, using it" STARSHIP_EXEC="$(which starship)" eval "$($STARSHIP_EXEC init bash)"