From 59025226f99a524c48c22ee0d14e587d45c639ad Mon Sep 17 00:00:00 2001 From: Mark Lowne Date: Tue, 11 Feb 2020 18:30:00 +0100 Subject: [PATCH] add `fish_greeting` --- fish_greeting.fish | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 fish_greeting.fish diff --git a/fish_greeting.fish b/fish_greeting.fish new file mode 100644 index 0000000..8de9f42 --- /dev/null +++ b/fish_greeting.fish @@ -0,0 +1,7 @@ +function fish_greeting + set_color $fish_color_autosuggestion + uname -nmsr + command -qs uptime; and command uptime + echo (id -un)'@'(hostname -s) + set_color normal +end