From cfb1e076b659c94b5ec98166eb7858e2ebd2683d Mon Sep 17 00:00:00 2001 From: serxoz Date: Mon, 15 Jan 2024 10:04:24 +0100 Subject: [PATCH] change from command to env var --- fish/functions/fish_right_prompt.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/functions/fish_right_prompt.fish b/fish/functions/fish_right_prompt.fish index cd121e3..ff72c22 100644 --- a/fish/functions/fish_right_prompt.fish +++ b/fish/functions/fish_right_prompt.fish @@ -1,6 +1,6 @@ function fish_right_prompt set_color $fish_color_autosuggestion 2> /dev/null; or set_color 555 - printf "%s@%s " $USER (hostname) + printf "%s@%s " $USER $hostname date "+%H:%M:%S" set_color normal end