diff options
| author | Marcelo Lira <setanta@gmail.com> | 2025-03-02 03:00:07 -0300 |
|---|---|---|
| committer | Marcelo Lira <setanta@gmail.com> | 2025-03-03 16:12:29 -0300 |
| commit | 050e0bef8e571a571684a12c4c86364c637c12d7 (patch) | |
| tree | c785a796495798fdd062e662e45e139ff6253b24 /config.def.h | |
| parent | 01d5521913a1ff71cbc4f1534d8eb26c9e2f2978 (diff) | |
Undercurl patch
https://st.suckless.org/patches/undercurl/
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 3d5288f..92facb0 100644 --- a/config.def.h +++ b/config.def.h @@ -489,3 +489,27 @@ static char ascii_printable[] = " !\"#$%&'()*+,-./0123456789:;<=>?" "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" "`abcdefghijklmnopqrstuvwxyz{|}~"; + +/** + * Undercurl style. Set UNDERCURL_STYLE to one of the available styles. + * + * Curly: Dunno how to draw it *shrug* + * _ _ _ _ + * ( ) ( ) ( ) ( ) + * (_) (_) (_) (_) + * + * Spiky: + * /\ /\ /\ /\ + * \/ \/ \/ + * + * Capped: + * _ _ _ + * / \ / \ / \ + * \_/ \_/ + */ +// Available styles +#define UNDERCURL_CURLY 0 +#define UNDERCURL_SPIKY 1 +#define UNDERCURL_CAPPED 2 +// Active style +#define UNDERCURL_STYLE UNDERCURL_CAPPED |
