commit 7082ba1e1050664309de707bbc5b7194a53ed5ac from: Anselm R Garbe date: Sat Dec 5 16:52:53 2009 UTC 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 commit - 569a1f925a7cf351e6ec3e38529f46a1d9becf3f commit + 7082ba1e1050664309de707bbc5b7194a53ed5ac blob - be9b41b5e0c8615d69941f28e45cb86083f879ee blob + 1f7abca95b37d5bf1e3f99e1db3a48437ae3fb25 --- dmenu.c +++ dmenu.c @@ -466,7 +466,7 @@ kpress(XKeyEvent * e) { FILE *fp; char *c; if(!(fp = (FILE*)popen("sselp", "r"))) - fprintf(stderr, "dmenu: Could not popen sselp\n"); + eprint("dmenu: Could not popen sselp\n"); c = fgets(text + len, sizeof(text) - len, fp); pclose(fp); if(c == NULL)