diff options
| -rw-r--r-- | config.arg.h | 2 | ||||
| -rw-r--r-- | event.c | 3 | 
2 files changed, 2 insertions, 3 deletions
diff --git a/config.arg.h b/config.arg.h index bc3adb4..8967285 100644 --- a/config.arg.h +++ b/config.arg.h @@ -3,7 +3,7 @@  /* appearance */  #define BARPOS			BarTop /* BarBot, BarOff */  #define BORDERPX		1 -#define FONT			"-*-pixelcarnage monospace-*-r-*-*-14-*-*-*-*-*-*-*" +#define FONT			"-*-terminus-medium-r-*-*-14-*-*-*-*-*-iso10646-*"  #define NORMBORDERCOLOR		"#333"  #define NORMBGCOLOR		"#222"  #define NORMFGCOLOR		"#ccc" @@ -301,8 +301,7 @@ maprequest(XEvent *e) {  	if(!XGetWindowAttributes(dpy, ev->window, &wa))  		return; -	fprintf(stderr, "does the window suck? %s\n", wa.map_state == IsViewable ? "no" : "yes"); -	if(wa.override_redirect || wa.map_state != IsViewable) +	if(wa.override_redirect)  		return;  	if(!getclient(ev->window))  		manage(ev->window, &wa);  | 
