new settings (boxdraw_braille = 1)
ci/woodpecker/tag/woodpecker Pipeline was successful Details

This commit is contained in:
Luca Bilke 2024-01-29 18:20:29 +01:00
parent 0cf43c62a0
commit 98add29e08
No known key found for this signature in database
GPG Key ID: AD6630D0A1E650AC
1 changed files with 9 additions and 7 deletions

View File

@ -83,7 +83,7 @@ const int boxdraw = 1;
const int boxdraw_bold = 0;
/* braille (U28XX): 1: render as adjacent "pixels", 0: use font */
const int boxdraw_braille = 0;
const int boxdraw_braille = 1;
/*
* bell volume. It must be a value between -100 and 100. Use 0 for disabling
@ -136,12 +136,14 @@ static const char *colorname[] = {
[255] = 0,
// indexes beyond 255 are used for internal colors
"#c0caf5", /* default cursor colour */
"#1a1b26", /* default inverted cursor colour */
"#c0caf5", /* default foreground colour */
"#1a1b26", /* default background colour */
"#c0caf5", /* default selection foreground colour */
"#33467C", /* default selection background colour */
"#c0caf5", /* cursor colour */
"#1a1b26", /* inverted cursor colour */
"#c0caf5", /* default foreground colour */
"#1a1b26", /* default background colour */
"#abb7ed", /* unfocused foreground colour */
"#14141a", /* unfocused background colour */
"#c0caf5", /* selection foreground colour */
"#33467C", /* selection background colour */
};
unsigned int defaultcs = 256;