func NewProgressInt(total int) *progress.Bar {
    b := progress.NewInt(total)
    b.Template(`{{.Bar}} {{.Percent | printf "%0.0f"}}% {{.Text}}`)
    b.Width = 35
    b.StartDelimiter = colors.Gray("|")