diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2022-12-31 16:30:35 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2022-12-31 16:30:35 -0500 |
| commit | 7c6ef5232de8d31a10e593882c29189c05296541 (patch) | |
| tree | 6d173bd6bdd519139467ae5a723602e9134dd7cd /config.def.h | |
| parent | c1a13da18e043a229cd08d9796ffd234c7311a86 (diff) | |
| download | st-7c6ef5232de8d31a10e593882c29189c05296541.tar.gz | |
Applied boxdraw + more repo cleanup
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 20f1c88..97d0ead 100644 --- a/config.def.h +++ b/config.def.h @@ -68,6 +68,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 */ |