Simple progress bar for the fish shell.
Install using fisher lepisma/fish-progress.
# Doing print_progress $total $current_count prints a single state
print_progress 100 34
:: 34 / 100 ███████████████████████——————————————————————————————————————————————
# Using a carriage return to refresh the bar
for i in (seq 1 100)
sleep 1
print_progress 100 $i
echo -ne "\r"
end