blob: 2038fc96bb96c851e723850bfbc8c340a1649b20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* 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 = "";
|