mirror of
https://github.com/oh-my-fish/theme-bobthefish.git
synced 2024-10-27 20:34:23 +00:00
11 lines
266 B
Fish
11 lines
266 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 command uptime
|
|
|
|
set_color normal
|
|
end
|