summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-08-18 22:45:33 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-08-18 22:45:33 +0200
commit31dde49c7b51bc8a9de8db08edb4008f026db35b (patch)
tree4cf5c3d5e5deb24f3bd27ed0293d9de29596cb87 /config.def.h
parent1a56c3c9d23eae2e83040d849a1980c04e12f0a3 (diff)
Fix so that the boxdraw patch is applied correctly(?), still issue with bottom graph display
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 de1f585..5575712 100644
--- a/config.def.h
+++ b/config.def.h
@@ -74,6 +74,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
*/