diff options
Diffstat (limited to 'fish/functions/fish_greeting.fish')
| -rw-r--r-- | fish/functions/fish_greeting.fish | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fish/functions/fish_greeting.fish b/fish/functions/fish_greeting.fish new file mode 100644 index 0000000..e468ce0 --- /dev/null +++ b/fish/functions/fish_greeting.fish @@ -0,0 +1,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 |