undercurl: upgrading patch with curly, spiky and capped options
Ref. https://git.suckless.org/sites/commit/9bb304a974185cbd9fa48c890450c6582d3e0546.html
This commit is contained in:
parent
390735695e
commit
f0e4dc3bd5
2 changed files with 346 additions and 1 deletions
26
config.def.h
26
config.def.h
|
|
@ -717,3 +717,29 @@ static char ascii_printable[] =
|
|||
*/
|
||||
static char *plumb_cmd = "plumb";
|
||||
#endif // RIGHTCLICKTOPLUMB_PATCH
|
||||
|
||||
#if UNDERCURL_PATCH
|
||||
/**
|
||||
* 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_SPIKY
|
||||
#endif // UNDERCURL_PATCH
|
||||
Loading…
Add table
Add a link
Reference in a new issue