this is only a temporary workaround, the command executed by -p must be configurable through some switch, that was the initial idea, just using sselp is too limited, I'll look into the other issues soon 7082ba1e
Anselm R Garbe · 2009-12-05 16:52 1 file(s) · +1 −1
dmenu.c +1 −1
466 466
				FILE *fp;
467 467
				char *c;
468 468
				if(!(fp = (FILE*)popen("sselp", "r")))
469 -
					fprintf(stderr, "dmenu: Could not popen sselp\n");
469 +
					eprint("dmenu: Could not popen sselp\n");
470 470
				c = fgets(text + len, sizeof(text) - len, fp);
471 471
				pclose(fp);
472 472
				if(c == NULL)