aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
new file mode 100644
index 0000000..0447669
--- /dev/null
+++ b/config.def.h
@@ -0,0 +1,27 @@
+/* clectio configuration -- suckless style: copy to config.h, edit, `make`.
+ * Everything here is compile-time; the binary has no config file to read. */
+
+/* --- Liturgical form: build ONE (recompile for the other). --------------- */
+#define FORM_OF /* Ordinary Form (modern, post-1969) */
+/* #define FORM_EF */ /* Extraordinary Form (1962) */
+
+/* --- Citation dialect: build ONE. ---------------------------------------- */
+/* #define SIGLA_LATIN */ /* e.g. "Ier 14:17-22" -- matches the Vulgate */
+#define SIGLA_ENGLISH /* e.g. "Jer 14:17-22" */
+
+/* --- Colourize the day name with its liturgical colour on a terminal. ---- */
+#define COLOR 1
+
+/* ------------------------- derived (do not edit) ------------------------- */
+#ifdef FORM_EF
+# define LITURGY "gen/liturgy_ef.h"
+# define FORMNAME "Extraordinary Form (1962)"
+#else
+# define LITURGY "gen/liturgy_of.h"
+# define FORMNAME "Ordinary Form"
+#endif
+#ifdef SIGLA_LATIN
+# define SIGLANAME "Latin sigla"
+#else
+# define SIGLANAME "English sigla"
+#endif