From 5a57ab02e8d71183a7eb2e3bcf9fa993dc5f4330 Mon Sep 17 00:00:00 2001 From: timoxa0 Date: Fri, 21 Jun 2024 18:30:10 +0500 Subject: [PATCH] Update progress bars --- cmd/root.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index fdbc2a8..2d7b4df 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -49,14 +49,14 @@ var rootCmd = &cobra.Command{ WithShowElapsedTime(false). WithRemoveWhenDone(false). WithShowCount(false). - WithBarFiller(pbarFillStyle.Sprint("—")). - WithLastCharacter("—"). - WithBarCharacter("—"). + WithBarFiller(pbarFillStyle.Sprint("─")). + WithLastCharacter("─"). + WithBarCharacter("─"). WithTitleStyle(pbarTitleStyle). WithBarStyle(pbarStyle) spinner = *pterm.DefaultSpinner. WithRemoveWhenDone(true). - WithSequence("-", "\\", "|", "/"). + WithSequence("─", "\\", "|", "/"). WithStyle(pbarTitleStyle). WithDelay(time.Millisecond * 100) },