From 97eebdcdcd832c7e2085b302fbadc7890ed49851 Mon Sep 17 00:00:00 2001 From: Florian Meinicke Date: Sat, 19 Oct 2019 12:40:35 +0200 Subject: [PATCH] Use `command uptime` to avoid coloured output when using grc plugin --- fish_greeting.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish_greeting.fish b/fish_greeting.fish index c74f50d..dbd8616 100644 --- a/fish_greeting.fish +++ b/fish_greeting.fish @@ -4,7 +4,7 @@ function fish_greeting -d "What's up, fish?" # TODO: `command -q -s` only works on fish 2.5+, so hold off on that for now command -s uptime >/dev/null - and uptime + and command uptime set_color normal end