summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-05-05 13:55:37 -0400
committerLuke Smith <luke@lukesmith.xyz>2020-05-05 13:55:37 -0400
commitb35e4f57273f56c53dbc4d77d7b5992c47255662 (patch)
treefa6845acd8e28b3abe16f49c857136df2af34ab0 /config.h
parentb43e574fa6e7e99cc620603cd0b7a36e1d7376b1 (diff)
boxdraw added
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 52a884a..67c34c3 100644
--- a/config.h
+++ b/config.h
@@ -65,6 +65,18 @@ int ximspot_update_interval = 1000;
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 = 1;
+
+/* braille (U28XX): 1: render as adjacent "pixels", 0: use font */
+const int boxdraw_braille = 1;
+
+/*
* bell volume. It must be a value between -100 and 100. Use 0 for disabling
* it
*/