diff options
author | Federico Igne <git@federicoigne.com> | 2020-05-23 11:29:02 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2020-05-23 11:29:02 +0100 |
commit | 81df9b428bd0330af98db9c69ffe69b0441e00fd (patch) | |
tree | 58773d60020d006a841f18b80578d9e763e839e9 /config.def.h | |
parent | dd31d0207ba2acebfb65400e916a624a57c638a4 (diff) | |
download | st-81df9b428bd0330af98db9c69ffe69b0441e00fd.tar.gz st-81df9b428bd0330af98db9c69ffe69b0441e00fd.zip |
Apply BoxDraw patch
Homepage link: https://st.suckless.org/patches/boxdraw/
Patch link: https://st.suckless.org/patches/boxdraw/st-boxdraw_v2-0.8.3.diff
Additional info: patch applied manually.
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 c2f3756..685a9aa 100644 --- a/config.def.h +++ b/config.def.h | |||
@@ -62,6 +62,18 @@ static unsigned int blinktimeout = 800; | |||
62 | static unsigned int cursorthickness = 2; | 62 | static 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 | */ | ||
70 | const int boxdraw = 1; | ||
71 | const int boxdraw_bold = 0; | ||
72 | |||
73 | /* braille (U28XX): 1: render as adjacent "pixels", 0: use font */ | ||
74 | const 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 | */ |