about summary refs log tree commit diff
path: root/dmenu.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2017-11-03 21:05:29 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2017-11-03 21:05:29 +0100
commit41379f7c39e6aa0a17d7807b22b49ea148f5b0fa (patch)
treeedc2a36f66e6e5e9364e11dc74f0c1632ac8d2ad /dmenu.c
parentSet class name on menu window (diff)
downloaddmenu-41379f7c39e6aa0a17d7807b22b49ea148f5b0fa.tar.gz
dmenu-41379f7c39e6aa0a17d7807b22b49ea148f5b0fa.tar.bz2
dmenu-41379f7c39e6aa0a17d7807b22b49ea148f5b0fa.zip
init colors using SchemeLast
this makes it slightly easier to add colors to schemes.
Diffstat (limited to '')
-rw-r--r--dmenu.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/dmenu.c b/dmenu.c
index 85e5060..91330f1 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -553,9 +553,8 @@ setup(void)
 #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);