nixos-config/modules/home/shell-conf/fish/functions/fish_greeting.fish

9 lines
195 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
2025-03-14 09:33:23 -04:00
figlet -f "$HOME/.local/share/flf/wavy.flf" (hostname)
2024-09-24 23:26:29 -04:00
end
end
end