aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index af19705..2038fc9 100644
--- a/config.def.h
+++ b/config.def.h
@@ -3,3 +3,19 @@
/* 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 = "";