diff --git a/.config/fish/functions/fish_greeting.fish b/.config/fish/functions/fish_greeting.fish index 59790cc..148e376 100644 --- a/.config/fish/functions/fish_greeting.fish +++ b/.config/fish/functions/fish_greeting.fish @@ -4,10 +4,9 @@ function fish_greeting --description 'Welcome the user' echo -e "\n" printf "Welcome to alpine, deke/dev-env edition\n" printf " Check out these tools:\n" - printf " %sDiagnostics: %s btop, tcpdump, dust, fd, rg%s\n" (set_color white) (set_color -i brblue) (set_color normal) - printf " %sCLI: %s zellij, helix, curl, wget, tar, zstd, jq%s\n" (set_color white) (set_color -i brblue) (set_color normal) - printf " %sSVN: %s git, jj, lazygit, lazyjj%s\n" (set_color white) (set_color -i brblue) (set_color normal) - printf " %sSVN: %s git, jj, lazygit, lazyjj%s\n" (set_color white) (set_color -i brblue) (set_color normal) - printf " %sK8S: %s k0s, kubectl\n" (set_color white) (set_color -i brblue) (set_color normal) + 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