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