dmenu

dynamic menu
git clone git://git.suckless.org/dmenu
Log | Files | Refs | README | LICENSE

commit bbf7b95dc93a47dbb5a4143b903797dc97197515
parent d6742ef8a6ce03f28ee9431ef51901ef712ffd76
Author: Eric Pruitt <eric.pruitt@gmail.com>
Date:   Wed,  5 Aug 2015 19:19:14 -0700

Fixed typo introduced by shared code

Diffstat:
Mdmenu.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dmenu.c b/dmenu.c @@ -118,7 +118,7 @@ main(int argc, char *argv[]) { if(!setlocale(LC_CTYPE, "") || !XSupportsLocale()) fputs("warning: no locale support\n", stderr); if(!(dpy = XOpenDisplay(NULL))) - die("dwm: cannot open display\n"); + die("dmenu: cannot open display\n"); screen = DefaultScreen(dpy); root = RootWindow(dpy, screen); sw = DisplayWidth(dpy, screen);