aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-12-22 16:08:48 -0800
committerMike Crute <mike@crute.us>2023-04-25 20:45:27 -0700
commit0ddcd0455171f2c52ae68d92bbddecb834350522 (patch)
treeb6c046074cccfbc5fbc5328d1a284d4021c767fc /config.def.h
parentba77c544805651604b722f2dafca867843868dd1 (diff)
downloadst-patched-0ddcd0455171f2c52ae68d92bbddecb834350522.tar.bz2
st-patched-0ddcd0455171f2c52ae68d92bbddecb834350522.tar.xz
st-patched-0ddcd0455171f2c52ae68d92bbddecb834350522.zip
Apply st-boxdraw_v2-0.8.3
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 20f1c88..97d0ead 100644
--- a/config.def.h
+++ b/config.def.h
@@ -68,6 +68,18 @@ static unsigned int blinktimeout = 800;
68static unsigned int cursorthickness = 2; 68static unsigned int cursorthickness = 2;
69 69
70/* 70/*
71 * 1: render most of the lines/blocks characters without using the font for
72 * perfect alignment between cells (U2500 - U259F except dashes/diagonals).
73 * Bold affects lines thickness if boxdraw_bold is not 0. Italic is ignored.
74 * 0: disable (render all U25XX glyphs normally from the font).
75 */
76const int boxdraw = 0;
77const int boxdraw_bold = 0;
78
79/* braille (U28XX): 1: render as adjacent "pixels", 0: use font */
80const int boxdraw_braille = 0;
81
82/*
71 * bell volume. It must be a value between -100 and 100. Use 0 for disabling 83 * bell volume. It must be a value between -100 and 100. Use 0 for disabling
72 * it 84 * it
73 */ 85 */