dev-env/.config/fish/functions/fish_greeting.fish
Raphael Jacobs 97266ef796
All checks were successful
ci / checkout (push) Successful in 1m34s
Improve motd message
2025-02-02 23:12:46 +01:00

12 lines
756 B
Fish

function fish_greeting --description 'Welcome the user'
printf "%s" (set_color -o brblue)
date +"%A %H:%M, %d/%m/%y"
echo -e "\n"
printf "Welcome to alpine, deke/dev-env edition\n"
printf " Check out these tools:\n"
printf " %s%sDiagnostics: %s btop, tcpdump, dust, fd, rg%s\n" (set_color normal) (set_color white) (set_color -o -i brblue)
printf " %s%sCLI: %s zellij, helix, curl, wget, tar, zstd, jq%s\n" (set_color normal) (set_color white) (set_color -o -i brblue)
printf " %s%sSVN: %s git, jj, lazygit, lazyjj%s\n" (set_color normal) (set_color white) (set_color -o -i brblue)
printf " %s%sK8S: %s k0s, kubectl\n" (set_color normal) (set_color white) (set_color -o -i brblue)
echo -e "\n"
end