nixos-config/dotfiles/dot_config/fish/functions/fish_greeting.fish

9 lines
201 B
Fish
Raw Normal View History

2024-09-24 23:26:29 -04:00
function fish_greeting
status --is-login
if [ $status = 0 ]
if which figlet > /dev/null
2024-09-26 22:00:05 -04:00
figlet -f "/home/emenel/.local/share/flf/wavy.flf" "welcome"
2024-09-24 23:26:29 -04:00
end
end
end