diff --git a/lychee-bin/src/commands/check.rs b/lychee-bin/src/commands/check.rs index 4a21e43..c9b5c02 100644 --- a/lychee-bin/src/commands/check.rs +++ b/lychee-bin/src/commands/check.rs @@ -127,11 +127,10 @@ async fn progress_bar_task( fn init_progress_bar() -> ProgressBar { let bar = ProgressBar::new_spinner().with_style( - ProgressStyle::default_bar() - .template( - "{spinner:.red.bright} {pos}/{len:.dim} [{elapsed_precise}] {bar:25} {wide_msg}", - ) - .expect("Valid progress bar"), + ProgressStyle::with_template( + "{spinner:.197.bright} {pos}/{len:.dim} ETA {eta} {bar:.dim} {wide_msg}", + ) + .expect("Valid progress bar"), ); bar.set_length(0); bar.set_message("Extracting links");