all repos — dmenu @ 41379f7c39e6aa0a17d7807b22b49ea148f5b0fa

my build of dmenu

init colors using SchemeLast

this makes it slightly easier to add colors to schemes.
Hiltjo Posthuma hiltjo@codemadness.org
Fri, 03 Nov 2017 21:05:29 +0100
commit

41379f7c39e6aa0a17d7807b22b49ea148f5b0fa

parent

64ab2801fbbbcc028c359080ae4bd546fc871f67

1 files changed, 2 insertions(+), 3 deletions(-)

jump to
M dmenu.cdmenu.c

@@ -553,9 +553,8 @@ int a, j, di, n, area = 0;

#endif /* init appearance */ - scheme[SchemeNorm] = drw_scm_create(drw, colors[SchemeNorm], 2); - scheme[SchemeSel] = drw_scm_create(drw, colors[SchemeSel], 2); - scheme[SchemeOut] = drw_scm_create(drw, colors[SchemeOut], 2); + for (j = 0; j < SchemeLast; j++) + scheme[j] = drw_scm_create(drw, colors[j], 2); clip = XInternAtom(dpy, "CLIPBOARD", False); utf8 = XInternAtom(dpy, "UTF8_STRING", False);