nixos-config/dotfiles/dot_config/fish/functions/fish_greeting.fish
2024-09-24 23:26:29 -04:00

8 lines
196 B
Fish

function fish_greeting
status --is-login
if [ $status = 0 ]
if which figlet > /dev/null
figlet -f "/Users/emenel/.local/flf/wavy.flf" "welcome"
end
end
end