From 4926c042120a30177a3bc8cfeb560f4ccf5d8429 Mon Sep 17 00:00:00 2001 From: "Liv (pelsh) Hugger" Date: Sat, 28 Dec 2024 10:42:03 +0100 Subject: [PATCH] use user-defined hostname in fish prompt --- dot_config/fish/functions/fish_prompt.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_config/fish/functions/fish_prompt.fish b/dot_config/fish/functions/fish_prompt.fish index e74cc5a..1cba2f1 100644 --- a/dot_config/fish/functions/fish_prompt.fish +++ b/dot_config/fish/functions/fish_prompt.fish @@ -6,7 +6,7 @@ function fish_prompt set -g blue (set_color -o blue) set -l green (set_color -o green) set -g normal (set_color normal) - set -l host (hostname -s) + set -l host (cat /etc/hostname) set -l user (whoami) set initial_indicator "$user@$host"