Currently in your master branch, the progress bar always begins with "Progress : ". In my fork, I added an optional third argument to change that word Progress to something else, but it still always prints the " : ".
I think it might be nice to have the option to make the progress bar render with no prefix at all-- the [ character right at the beginning of the line. My disk usage use case doesn't really need anything ahead of the progress bar since earlier in the message I give more precise numbers and make it clear what the bar is for.
We could add another flag --no-prefix or something, or if we don't mind it being a breaking change, the simpler solution could be that my optional prefix argument no longer defaults to "Progress", and you have to include the colon in that. so to get the current behavior you'd need to invoke ProgressBar 50 100 "Progress : ".
--no-prefix works for me if you don't want a breaking change (of course, you don't have to merge my fork, but I'd like to maintain it in a form you would want to use, so we can share code :)