summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorAiden Gall <aiden@aidengall.xyz>2023-11-16 15:28:59 +0000
committerAiden Gall <aiden@aidengall.xyz>2023-11-16 15:32:18 +0000
commit7786188a45318f1bcac232d1615ffb8103c80677 (patch)
tree83c2e3cab77a49ff1d12c812139a9a08b40e3c9b /config.def.h
parent09d3ab2294c8113e45cf7a64902989ba45bb748a (diff)
patch boxdraw
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 5dd7204..d1f7ab5 100644
--- a/config.def.h
+++ b/config.def.h
@@ -68,6 +68,18 @@ static unsigned int blinktimeout = 800;
static unsigned int cursorthickness = 2;
/*
+ * 1: render most of the lines/blocks characters without using the font for
+ * perfect alignment between cells (U2500 - U259F except dashes/diagonals).
+ * Bold affects lines thickness if boxdraw_bold is not 0. Italic is ignored.
+ * 0: disable (render all U25XX glyphs normally from the font).
+ */
+const int boxdraw = 1;
+const int boxdraw_bold = 0;
+
+/* braille (U28XX): 1: render as adjacent "pixels", 0: use font */
+const int boxdraw_braille = 0;
+
+/*
* bell volume. It must be a value between -100 and 100. Use 0 for disabling
* it
*/