Compare commits

...

2 Commits

Author SHA1 Message Date
33da96a7a7 Updated config 2025-05-05 00:22:20 +01:00
3397e3c4a9 Test 2025-05-05 00:20:20 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ static const char *colors[SchemeLast][2] = {
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;
static unsigned int lines = 6;
/*
* Characters not considered part of a word while deleting words

View File

@ -179,7 +179,7 @@ drawmenu(void)
if (lines > 0) {
/* draw vertical list */
for (item = curr; item != next; item = item->right)
drawitem(item, x - promptw, y += bh, mw);
drawitem(item, x - promptw, y += bh, mw - x);
} else if (matches) {
/* draw horizontal list */
x += inputw;