sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 67f07658f59673f9c2bf78fadc2547f56ab61630
parent 5fced4c7bdc06cd74682c7f90405dc00967f5674
Author: Bhargav Das Gupta <dasguptabhargav@gmail.com>
Date:   Mon, 14 Jul 2025 09:05:38 +0530

[dmenu][patches][highpriority] diff file for dmenu 5.3

Diffstat:
Atools.suckless.org/dmenu/patches/highpriority/dmenu-highpriority-5.3.diff | 174+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mtools.suckless.org/dmenu/patches/highpriority/index.md | 3++-
2 files changed, 176 insertions(+), 1 deletion(-)

diff --git a/tools.suckless.org/dmenu/patches/highpriority/dmenu-highpriority-5.3.diff b/tools.suckless.org/dmenu/patches/highpriority/dmenu-highpriority-5.3.diff @@ -0,0 +1,174 @@ +diff --git a/config.def.h b/config.def.h +index 1edb647..47b616d 100644 +--- a/config.def.h ++++ b/config.def.h +@@ -12,6 +12,7 @@ static const char *colors[SchemeLast][2] = { + [SchemeNorm] = { "#bbbbbb", "#222222" }, + [SchemeSel] = { "#eeeeee", "#005577" }, + [SchemeOut] = { "#000000", "#00ffff" }, ++ [SchemeHp] = { "#bbbbbb", "#333333" } + }; + /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ + static unsigned int lines = 0; +diff --git a/dmenu.c b/dmenu.c +index 40f93e0..7a7c71e 100644 +--- a/dmenu.c ++++ b/dmenu.c +@@ -25,14 +25,16 @@ + #define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad) + + /* enums */ +-enum { SchemeNorm, SchemeSel, SchemeOut, SchemeLast }; /* color schemes */ ++enum { SchemeNorm, SchemeSel, SchemeHp, SchemeOut, SchemeLast }; /* color schemes */ + + struct item { + char *text; + struct item *left, *right; +- int out; ++ int out, hp; + }; + ++static const char **hpitems = NULL; ++static int hplength = 0; + static char text[BUFSIZ] = ""; + static char *embed; + static int bh, mw, mh; +@@ -64,6 +66,29 @@ textw_clamp(const char *str, unsigned int n) + return MIN(w, n); + } + ++static int ++str_compar(const void *s0_in, const void *s1_in) ++{ ++ const char *s0 = *(const char **)s0_in; ++ const char *s1 = *(const char **)s1_in; ++ return fstrncmp == strncasecmp ? strcasecmp(s0, s1) : strcmp(s0, s1); ++} ++ ++static void ++parse_hpitems(char *src) ++{ ++ int n = 0; ++ char *t; ++ ++ for (t = strtok(src, ","); t; t = strtok(NULL, ",")) { ++ if (hplength + 1 >= n) { ++ if (!(hpitems = realloc(hpitems, (n += 8) * sizeof *hpitems))) ++ die("Unable to realloc %zu bytes\n", n * sizeof *hpitems); ++ } ++ hpitems[hplength++] = t; ++ } ++} ++ + static void + appenditem(struct item *item, struct item **list, struct item **last) + { +@@ -106,6 +131,7 @@ cleanup(void) + for (i = 0; items && items[i].text; ++i) + free(items[i].text); + free(items); ++ free(hpitems); + drw_free(drw); + XSync(dpy, False); + XCloseDisplay(dpy); +@@ -134,6 +160,8 @@ drawitem(struct item *item, int x, int y, int w) + { + if (item == sel) + drw_setscheme(drw, scheme[SchemeSel]); ++ else if (item->hp) ++ drw_setscheme(drw, scheme[SchemeHp]); + else if (item->out) + drw_setscheme(drw, scheme[SchemeOut]); + else +@@ -235,7 +263,7 @@ match(void) + char buf[sizeof text], *s; + int i, tokc = 0; + size_t len, textsize; +- struct item *item, *lprefix, *lsubstr, *prefixend, *substrend; ++ struct item *item, *lhpprefix, *lprefix, *lsubstr, *hpprefixend, *prefixend, *substrend; + + strcpy(buf, text); + /* separate input text into tokens to be matched individually */ +@@ -244,7 +272,7 @@ match(void) + die("cannot realloc %zu bytes:", tokn * sizeof *tokv); + len = tokc ? strlen(tokv[0]) : 0; + +- matches = lprefix = lsubstr = matchend = prefixend = substrend = NULL; ++ matches = lhpprefix = lprefix = lsubstr = matchend = hpprefixend = prefixend = substrend = NULL; + textsize = strlen(text) + 1; + for (item = items; item && item->text; item++) { + for (i = 0; i < tokc; i++) +@@ -252,14 +280,24 @@ match(void) + break; + if (i != tokc) /* not all tokens match */ + continue; +- /* exact matches go first, then prefixes, then substrings */ ++ /* exact matches go first, then prefixes with high priority, then prefixes, then substrings */ + if (!tokc || !fstrncmp(text, item->text, textsize)) + appenditem(item, &matches, &matchend); ++ else if (item->hp && !fstrncmp(tokv[0], item->text, len)) ++ appenditem(item, &lhpprefix, &hpprefixend); + else if (!fstrncmp(tokv[0], item->text, len)) + appenditem(item, &lprefix, &prefixend); + else + appenditem(item, &lsubstr, &substrend); + } ++ if (lhpprefix) { ++ if (matches) { ++ matchend->right = lhpprefix; ++ lhpprefix->left = matchend; ++ } else ++ matches = lhpprefix; ++ matchend = hpprefixend; ++ } + if (lprefix) { + if (matches) { + matchend->right = lprefix; +@@ -551,6 +589,10 @@ readstdin(void) + char *line = NULL; + size_t i, itemsiz = 0, linesiz = 0; + ssize_t len; ++ char **p; ++ ++ if (hpitems && hplength > 0) ++ qsort(hpitems, hplength, sizeof *hpitems, str_compar); + + /* read each line from stdin and add it to the item list */ + for (i = 0; (len = getline(&line, &linesiz, stdin)) != -1; i++) { +@@ -565,6 +607,11 @@ readstdin(void) + die("strdup:"); + + items[i].out = 0; ++ p = hpitems == NULL ? NULL : bsearch( ++ &items[i].text, hpitems, hplength, sizeof *hpitems, ++ str_compar ++ ); ++ items[i].hp = p != NULL; + } + free(line); + if (items) +@@ -716,7 +763,8 @@ static void + usage(void) + { + die("usage: dmenu [-bfiv] [-l lines] [-p prompt] [-fn font] [-m monitor]\n" +- " [-nb color] [-nf color] [-sb color] [-sf color] [-w windowid]"); ++ " [-nb color] [-nf color] [-sb color] [-sf color] [-w windowid]\n" ++ " [-hb color] [-hf color] [-hp items]"); + } + + int +@@ -756,8 +804,14 @@ main(int argc, char *argv[]) + colors[SchemeSel][ColBg] = argv[++i]; + else if (!strcmp(argv[i], "-sf")) /* selected foreground color */ + colors[SchemeSel][ColFg] = argv[++i]; ++ else if (!strcmp(argv[i], "-hb")) /* high priority background color */ ++ colors[SchemeHp][ColBg] = argv[++i]; ++ else if (!strcmp(argv[i], "-hf")) /* low priority background color */ ++ colors[SchemeHp][ColFg] = argv[++i]; + else if (!strcmp(argv[i], "-w")) /* embedding window id */ + embed = argv[++i]; ++ else if (!strcmp(argv[i], "-hp")) ++ parse_hpitems(argv[++i]); + else + usage(); + diff --git a/tools.suckless.org/dmenu/patches/highpriority/index.md b/tools.suckless.org/dmenu/patches/highpriority/index.md @@ -21,9 +21,10 @@ Download * [dmenu-highpriority-5.1.diff](dmenu-highpriority-5.1.diff) * [dmenu-highpriority-e35976f.diff](dmenu-highpriority-e35976f.diff) * [dmenu-highpriority-5.2.diff](dmenu-highpriority-5.2.diff) +* [dmenu-highpriority-5.3.diff](dmenu-highpriority-5.3.diff) Author ------ * Takase * NRK (v5.1 and `e35976f` rebase, allocation related cleanup) -* Bhargav Das Gupta (v5.2) +* Bhargav Das Gupta (v5.2, v5.3)