mirror of
https://github.com/oh-my-fish/theme-bobthefish.git
synced 2025-06-13 13:03:54 +00:00
The `uptime` command does not exist in some environments, such as MSYS2, so execute the command only if it exists.
7 lines
164 B
Fish
7 lines
164 B
Fish
function fish_greeting -d "What's up, fish?"
|
|
set_color $fish_color_autosuggestion
|
|
uname -nmsr
|
|
command -q -s uptime; and uptime
|
|
set_color normal
|
|
end
|