/* See LICENSE file for copyright and license details. */ /* progress bar glyphs (ASCII default) */ static const char *const BAR_FILL = ">"; static const char *const BAR_EMPTY = "-"; /* persistent alert: keep ringing the bell until any key is pressed. * Foreground-only; backgrounded runs always fall through. * Override per-run with --no-persist. */ static const int ALERT_PERSIST = 1; /* reverse-video flash during the alert loop. * Override per-run with --flash on|off. */ static const int FLASH = 1; /* default bar style: "" autodetects (unicode if locale is UTF-8, else ascii). * Available: unicode | ascii | hash | dots | line | block | arrow | minimal. */ static const char *const BAR_STYLE = "";