X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/0e5c8198bc5a69e87b0114b81d6569188828edfa..c0705eeb65733e8c5091e47d5bdc701a0779a949:/main.c diff --git a/main.c b/main.c index bfc63b1..a1cf245 100644 --- a/main.c +++ b/main.c @@ -46,7 +46,7 @@ Client *sel = NULL; static Bool other_wm_running; static const char version[] = "dwm-" VERSION ", (C)opyright MMVI Anselm R. Garbe\n"; -static int (*x_error_handler) (Display *, XErrorEvent *); +static int (*x_xerror) (Display *, XErrorEvent *); static void usage() { error("usage: dwm [-v]\n"); } @@ -94,7 +94,7 @@ win_property(Window w, Atom a, Atom t, long l, unsigned char **prop) } int -win_proto(Window w) +proto(Window w) { unsigned char *protocols; long res; @@ -114,7 +114,7 @@ win_proto(Window w) } void -send_message(Window w, Atom a, long value) +sendevent(Window w, Atom a, long value) { XEvent e; @@ -135,7 +135,7 @@ send_message(Window w, Atom a, long value) * calls exit(). */ int -error_handler(Display *dpy, XErrorEvent *error) +xerror(Display *dpy, XErrorEvent *error) { if(error->error_code == BadWindow || (error->request_code == X_SetInputFocus @@ -153,7 +153,7 @@ error_handler(Display *dpy, XErrorEvent *error) return 0; fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n", error->request_code, error->error_code); - return x_error_handler(dpy, error); /* may call exit() */ + return x_xerror(dpy, error); /* may call exit() */ } /* @@ -161,7 +161,7 @@ error_handler(Display *dpy, XErrorEvent *error) * is already running. */ static int -startup_error_handler(Display *dpy, XErrorEvent *error) +startup_xerror(Display *dpy, XErrorEvent *error) { other_wm_running = True; return -1; @@ -190,6 +190,7 @@ main(int argc, char *argv[]) fd_set rd; XSetWindowAttributes wa; unsigned int mask; + Bool readstdin = True; Window w; XEvent ev; @@ -214,7 +215,7 @@ main(int argc, char *argv[]) /* check if another WM is already running */ other_wm_running = False; - XSetErrorHandler(startup_error_handler); + XSetErrorHandler(startup_xerror); /* this causes an error if some other WM is running */ XSelectInput(dpy, root, SubstructureRedirectMask); XFlush(dpy); @@ -223,7 +224,7 @@ main(int argc, char *argv[]) error("dwm: another window manager is already running\n"); XSetErrorHandler(0); - x_error_handler = XSetErrorHandler(error_handler); + x_xerror = XSetErrorHandler(xerror); /* init atoms */ wm_atom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False); @@ -238,13 +239,13 @@ main(int argc, char *argv[]) cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing); cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur); - update_keys(); + grabkeys(); /* style */ - dc.bg = initcolor(BGCOLOR); - dc.fg = initcolor(FGCOLOR); - dc.border = initcolor(BORDERCOLOR); - initfont(FONT); + dc.bg = getcolor(BGCOLOR); + dc.fg = getcolor(FGCOLOR); + dc.border = getcolor(BORDERCOLOR); + setfont(FONT); sx = sy = 0; sw = DisplayWidth(dpy, screen); @@ -264,6 +265,10 @@ main(int argc, char *argv[]) XDefineCursor(dpy, barwin, cursor[CurNormal]); XMapRaised(dpy, barwin); + dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen)); + dc.gc = XCreateGC(dpy, root, 0, 0); + drawstatus(); + issel = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask); wa.event_mask = SubstructureRedirectMask | EnterWindowMask \ @@ -272,17 +277,15 @@ main(int argc, char *argv[]) XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa); - dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen)); - dc.gc = XCreateGC(dpy, root, 0, 0); - strcpy(stext, "dwm-"VERSION); scan_wins(); - draw_bar(); /* main event loop, reads status text from stdin as well */ +Mainloop: while(running) { FD_ZERO(&rd); - FD_SET(0, &rd); + if(readstdin) + FD_SET(STDIN_FILENO, &rd); FD_SET(ConnectionNumber(dpy), &rd); i = select(ConnectionNumber(dpy) + 1, &rd, 0, 0, 0); @@ -291,17 +294,28 @@ main(int argc, char *argv[]) if(i < 0) error("select failed\n"); else if(i > 0) { - if(FD_ISSET(ConnectionNumber(dpy), &rd) && XPending(dpy) > 0) { - XNextEvent(dpy, &ev); - if(handler[ev.type]) - (handler[ev.type])(&ev); /* call handler */ + if(FD_ISSET(ConnectionNumber(dpy), &rd)) { + while(XPending(dpy)) { + XNextEvent(dpy, &ev); + if(handler[ev.type]) + (handler[ev.type])(&ev); /* call handler */ + } } - if(FD_ISSET(0, &rd)) { + if(readstdin && FD_ISSET(STDIN_FILENO, &rd)) { i = n = 0; - while((i = getchar()) != '\n' && n < sizeof(stext) - 1) + for(;;) { + if((i = getchar()) == EOF) { + /* broken pipe/end of producer */ + readstdin = False; + strcpy(stext, "broken pipe"); + goto Mainloop; + } + if(i == '\n' || n >= sizeof(stext) - 1) + break; stext[n++] = i; + } stext[n] = 0; - draw_bar(); + drawstatus(); } } }