summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authortsxv478 <atvx717@infraredcombat.xyz>2022-07-17 04:29:05 +0300
committertsxv478 <atvx717@infraredcombat.xyz>2022-07-17 04:29:05 +0300
commitad3434a3eb4a5546b00680f9c5b41fc597272b59 (patch)
treecd8f478e9c74c9a367b2295ad801852ca57c45d6 /config.def.h
parent24487a33291ea1cbb6456f21c48230eed4da4498 (diff)
boxdraw patch
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 c223706..1bd4dd4 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 = 0;
+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
*/