aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
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 fdbacfd..e71b6a2 100644
--- a/config.def.h
+++ b/config.def.h
@@ -64,6 +64,18 @@ static unsigned int blinktimeout = 800;
64static unsigned int cursorthickness = 2; 64static unsigned int cursorthickness = 2;
65 65
66/* 66/*
67 * 1: render most of the lines/blocks characters without using the font for
68 * perfect alignment between cells (U2500 - U259F except dashes/diagonals).
69 * Bold affects lines thickness if boxdraw_bold is not 0. Italic is ignored.
70 * 0: disable (render all U25XX glyphs normally from the font).
71 */
72const int boxdraw = 0;
73const int boxdraw_bold = 0;
74
75/* braille (U28XX): 1: render as adjacent "pixels", 0: use font */
76const int boxdraw_braille = 0;
77
78/*
67 * bell volume. It must be a value between -100 and 100. Use 0 for disabling 79 * bell volume. It must be a value between -100 and 100. Use 0 for disabling
68 * it 80 * it
69 */ 81 */