dotfiles/dot_config/fish/functions/fish_greeting.fish

21 lines
407 B
Fish

#!/usr/bin/env fish
if status --is-interactive
function fish_greeting
set -f cmd
if command -v fortune &>/dev/null
set -a cmd fortune
end
if command -v cowsay &>/dev/null
set -a cmd cowsay
end
if command -v lolcat &>/dev/null
set -a cmd "lolcat -t"
end
fish -c (string join ' | ' $cmd)
end
end