From 27643faaea11221b188484a68dbc70e9a197dd8f Mon Sep 17 00:00:00 2001 From: Abdulla Abdurakhmanov Date: Tue, 20 Aug 2024 10:47:22 +0200 Subject: [PATCH] Progress bar style update --- src/commands/copy_command.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/copy_command.rs b/src/commands/copy_command.rs index abe8418..9b72845 100644 --- a/src/commands/copy_command.rs +++ b/src/commands/copy_command.rs @@ -64,9 +64,9 @@ pub async fn command_copy( let bar = ProgressBar::new(1); bar.set_style( ProgressStyle::with_template( - "{spinner:.green} [{elapsed_precise}] [{wide_bar:.cyan/blue}] {pos:>3}/{len:3}", + "{spinner:.green} [{elapsed_precise}] [{wide_bar:.green/dim.blue}] {pos:>3}/{len:3}", )? - .progress_chars("◉>◯"), + .progress_chars("━>━"), ); bar.enable_steady_tick(Duration::from_millis(100)); let app_reporter = AppReporter::from(&bar);