bar.c
changeset 5 e5018cae273f
child 14 5c078b66347b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bar.c	Mon Jul 10 22:16:48 2006 +0200
@@ -0,0 +1,18 @@
+/*
+ * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
+ * See LICENSE file for license details.
+ */
+
+#include "wm.h"
+
+void
+draw_bar()
+{
+	brush.rect = barrect;
+	brush.rect.x = brush.rect.y = 0;
+	draw(dpy, &brush, False, 0);
+
+	XCopyArea(dpy, brush.drawable, barwin, brush.gc, 0, 0, barrect.width,
+			barrect.height, 0, 0);
+	XFlush(dpy);
+}