# HG changeset patch # User Anselm R. Garbe # Date 1152979874 -7200 # Node ID 0d71fb80b59241930bc7a001be23bdf2edcebfc3 # Parent 38c8f7f7d4015de4af3a4c96100ce5f2bb74b63d changing XFlush into XSync diff -r 38c8f7f7d401 -r 0d71fb80b592 dwm.h --- a/dwm.h Sat Jul 15 17:19:19 2006 +0200 +++ b/dwm.h Sat Jul 15 18:11:14 2006 +0200 @@ -8,9 +8,14 @@ /********** CUSTOMIZE **********/ #define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*" +#define BGCOLOR "#0a2c2d" +#define FGCOLOR "#ddeeee" +#define BORDERCOLOR "#176164" +/* #define BGCOLOR "#666699" #define FGCOLOR "#eeeeee" #define BORDERCOLOR "#9999CC" +*/ #define MASTERW 52 /* percent */ #define WM_PROTOCOL_DELWIN 1 diff -r 38c8f7f7d401 -r 0d71fb80b592 dwm.html --- a/dwm.html Sat Jul 15 17:19:19 2006 +0200 +++ b/dwm.html Sat Jul 15 18:11:14 2006 +0200 @@ -74,9 +74,9 @@ wmiir and what not...
  • - garbeam does not want any feedback to dwm. If you ask for support, + Anselm does not want any feedback to dwm. If you ask for support, feature requests, or if you report bugs, they will be ignored - with a high chance. dwm is only intended to fit garbeams needs. + with a high chance. dwm is only intended to fit Anselms needs. However you are free to download and distribute/relicense it, with the conditions of the MIT/X Consortium license.
  • @@ -99,7 +99,7 @@

    Miscellaneous

    You can purchase this tricot - if you like dwm and the dwm logo, which has been designed by garbeam. + if you like dwm and the dwm logo, which has been designed by Anselm.

    --Anselm (20060714)

    diff -r 38c8f7f7d401 -r 0d71fb80b592 event.c --- a/event.c Sat Jul 15 17:19:19 2006 +0200 +++ b/event.c Sat Jul 15 18:11:14 2006 +0200 @@ -128,7 +128,7 @@ Client *c; if(barwin == ev->window) { - x = (arrange == dofloat) ? textw("~") : 0; + x = 0; for(a.i = 0; a.i < TLast; a.i++) { x += textw(tags[a.i]); if(ev->x < x) { diff -r 38c8f7f7d401 -r 0d71fb80b592 main.c --- a/main.c Sat Jul 15 17:19:19 2006 +0200 +++ b/main.c Sat Jul 15 18:11:14 2006 +0200 @@ -204,12 +204,12 @@ XSetErrorHandler(xerrorstart); /* this causes an error if some other WM is running */ XSelectInput(dpy, root, SubstructureRedirectMask); - XFlush(dpy); + XSync(dpy, False); if(otherwm) eprint("dwm: another window manager is already running\n"); - XSetErrorHandler(0); + XSetErrorHandler(NULL); xerrorxlib = XSetErrorHandler(xerror); /* init atoms */