summaryrefslogtreecommitdiffstats
path: root/fish/functions/fish_greeting.fish
blob: e468ce0f47289683cb2a0eb336062b4f18deabb1 (plain)
1
2
3
4
5
6
7
8
9
function fish_greeting -d "What's up, fish?"
    set_color $fish_color_autosuggestion
    uname -nmsr

    command -q uptime
    and command uptime

    set_color normal
end