oh-my-fish_theme-bobthefish/fish_greeting.fish
Petar Kirov fb707d7b37 fish_greeting.fish: Make existance of uptime command optional
The `uptime` command does not exist in some environments, such as MSYS2,
so execute the command only if it exists.
2019-01-23 01:56:19 +02:00

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