nixos-config/modules/home/shell-conf/fish/functions/fish_greeting.fish
2025-03-21 16:50:54 -04:00

8 lines
195 B
Fish

function fish_greeting
status --is-login
if [ $status = 0 ]
if which figlet > /dev/null
figlet -f "$HOME/.local/share/flf/wavy.flf" (hostname)
end
end
end