From cd49ee5c4d0e4fe167482b84e389e68ba525f9fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Fri, 9 Aug 2024 14:34:29 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(fish):=20check=20if=20colors?= =?UTF-8?q?cript=20binary=20is=20on=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/fish/functions/fish_greeting.fish | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/fish/functions/fish_greeting.fish b/.config/fish/functions/fish_greeting.fish index 87fcd302..865fda3a 100644 --- a/.config/fish/functions/fish_greeting.fish +++ b/.config/fish/functions/fish_greeting.fish @@ -1,3 +1,5 @@ function fish_greeting - colorscript random + if type -q colorscript + colorscript random + end end