bar.c
changeset 989 5f7018237edb
parent 988 aea51354bbe6
--- a/bar.c	Sat Sep 15 13:16:54 2007 +0200
+++ b/bar.c	Sat Sep 15 20:39:31 2007 +0200
@@ -69,7 +69,8 @@
 		if(dc.font.xfont)
 			XFreeFont(dpy, dc.font.xfont);
 		dc.font.xfont = NULL;
-		if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)))
+		if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
+		|| !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
 			eprint("error, cannot load font: '%s'\n", fontstr);
 		dc.font.ascent = dc.font.xfont->ascent;
 		dc.font.descent = dc.font.xfont->descent;
@@ -186,9 +187,7 @@
 }
 
 void
-initbar(void) {
-	XSetWindowAttributes wa;
-
+initstyle(void) {
 	dc.norm[ColBorder] = initcolor(NORMBORDERCOLOR);
 	dc.norm[ColBG] = initcolor(NORMBGCOLOR);
 	dc.norm[ColFG] = initcolor(NORMFGCOLOR);
@@ -197,6 +196,12 @@
 	dc.sel[ColFG] = initcolor(SELFGCOLOR);
 	initfont(FONT);
 	dc.h = bh = dc.font.height + 2;
+}
+
+void
+initbar(void) {
+	XSetWindowAttributes wa;
+
 	wa.override_redirect = 1;
 	wa.background_pixmap = ParentRelative;
 	wa.event_mask = ButtonPressMask | ExposureMask;