oh-my-fish_theme-bobthefish/fish_greeting.fish
2019-01-27 01:19:39 -08:00

11 lines
258 B
Fish

function fish_greeting -d "What's up, fish?"
set_color $fish_color_autosuggestion
uname -nmsr
# TODO: `command -q -s` only works on fish 2.5+, so hold off on that for now
command -s uptime >/dev/null
and uptime
set_color normal
end