mirror of
https://github.com/p-ranav/indicators.git
synced 2025-12-16 04:18:51 +08:00
Updated sample for indeterminate_progress_bar and added demo GIF
This commit is contained in:
@@ -20,7 +20,7 @@ int main() {
|
|||||||
indicators::show_console_cursor(false);
|
indicators::show_console_cursor(false);
|
||||||
|
|
||||||
auto job = [&bar]() {
|
auto job = [&bar]() {
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(5000));
|
std::this_thread::sleep_for(std::chrono::milliseconds(10000));
|
||||||
bar.mark_as_completed();
|
bar.mark_as_completed();
|
||||||
std::cout << termcolor::bold << termcolor::green
|
std::cout << termcolor::bold << termcolor::green
|
||||||
<< "System is up to date!\n" << termcolor::reset;
|
<< "System is up to date!\n" << termcolor::reset;
|
||||||
@@ -30,9 +30,11 @@ int main() {
|
|||||||
// Update bar state
|
// Update bar state
|
||||||
while (!bar.is_completed()) {
|
while (!bar.is_completed()) {
|
||||||
bar.tick();
|
bar.tick();
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(50));
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
||||||
}
|
}
|
||||||
|
|
||||||
job_completion_thread.join();
|
job_completion_thread.join();
|
||||||
|
|
||||||
|
indicators::show_console_cursor(true);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user