summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-09-04 20:18:30 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-09-04 20:18:30 +0530
commit54c46dc5bab7f924e3bbd203a6d04807c97fd720 (patch)
tree3f09f56e47122d73d290f0cccc9ab0fc1fc2e39c /config.h
parent9e87513f847505cd22188018f12293f3c51c6098 (diff)
applying boxdraw patch and adding vertcenter patch
Diffstat (limited to 'config.h')
-rw-r--r--config.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/config.h b/config.h
index e8a5d9b..af189e6 100644
--- a/config.h
+++ b/config.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
*/