oh-my-fish_theme-bobthefish/fish_greeting.fish

11 lines
266 B
Fish
Raw Normal View History

2018-03-25 15:58:01 +00:00
function fish_greeting -d "What's up, fish?"
2019-01-13 17:56:20 +00:00
set_color $fish_color_autosuggestion
uname -nmsr
2019-01-27 09:19:39 +00:00
# TODO: `command -q -s` only works on fish 2.5+, so hold off on that for now
command -s uptime >/dev/null
and command uptime
2019-01-27 09:19:39 +00:00
2019-01-13 17:56:20 +00:00
set_color normal
2013-09-18 06:17:15 +00:00
end