multibar icon indicating copy to clipboard operation
multibar copied to clipboard

Display multiple progress bars in Go (golang).

Results 12 multibar issues
Sort by recently updated
recently updated
newest added

How to print log when processing. [https://github.com/cheggaaa/pb/issues/110](https://github.com/cheggaaa/pb/issues/110) [https://github.com/gosuri/uiprogress/issues/42](https://github.com/gosuri/uiprogress/issues/42)

https://github.com/sethgrid/multibar/blob/4bf4cf7b87d60bfaf4b4ec40fc7aabf376d0be37/multibar.go#L166

Hi, I've been playing with the package and I would like to be able to dynamically add/reset/remove progress bars. That is I don't know how many progress bars there will...

After exiting a program using multibar, I get `;1R` entered into my shell prompt and some control characters (e.g. Control+C) stop working until I reset my terminal. Not sure what's...

Hi! I'm trying to get an output of logs with a progress bar sticking on the bottom of the window. I've been adapting the example to try that: ```go diff...

MakeBar returns a function, not the actual progressbar. So the options are inaccessible.

I want to send message to output to notify user,what it's going on right now but without causing a line break, just clean last message and write in same line.

``` barContainer, _ := multibar.New() go barContainer.Listen() barProgress1 := barContainer.MakeBar(10, "总任务") wg := &sync.WaitGroup{} wg.Add(1) go func() { for i := 0; i --------------] 43ms ```

It appears multibar uses `curse` and this has a dependency on `github.com/kless/term` which does not support windows. Any ideas about how to make multibar run on windows? Thanks!