Merge branch 'with-colored-caret' into my-main

This commit is contained in:
Andreev Gregory 2025-03-03 20:43:18 +03:00
commit 2adbd98501
2 changed files with 3 additions and 2 deletions

View File

@ -16,6 +16,7 @@ static const char *colors[SchemeLast][2] = {
[SchemeNorm] = { "#bbbbbb", "#222222" },
[SchemeSel] = { "#eeeeee", "#005577" },
[SchemeOut] = { "#000000", "#00ffff" },
[SchemeCaret] = { "#fe5e5e", "#222222" },
};
/* -l and -g options; controls number of lines and columns in grid if > 0 */

View File

@ -29,7 +29,7 @@
#define OPAQUE 0xffu
/* enums */
enum { SchemeNorm, SchemeSel, SchemeOut, SchemeLast }; /* color schemes */
enum { SchemeNorm, SchemeSel, SchemeOut, SchemeCaret, SchemeLast }; /* color schemes */
struct item {
char *text;
@ -183,7 +183,7 @@ drawmenu(void)
curpos = TEXTW(text) - TEXTW(&text[cursor]);
if ((curpos += lrpad / 2 - 1) < w) {
drw_setscheme(drw, scheme[SchemeNorm]);
drw_setscheme(drw, scheme[SchemeCaret]);
drw_rect(drw, x + curpos, 2, 2, bh - 4, 1, 0);
}