fish/functions/tools.fish
2024-05-21 19:56:38 +02:00

16 lines
560 B
Fish

# ─< tools creation >───────────────────────────────────────────────────────────────────────
function tools
echo $TOOLBOX
end
function fish_prompt
set -l last_status $status
set -l status_symbol (if test $last_status -eq 0
echo -n '[󰒐 ](fg:#53e67a)'
else
echo -n '[󰒑 ](fg:#d22863)'
end)
echo -n (set_color normal)
printf "%s%s " $status_symbol (starship prompt)
end