From 439e15d09f6fa9271d3b49ef97194f0c80ebe161 Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Mon, 10 Jul 2006 22:16:48 +0200 Subject: added several other stuff --- bar.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 bar.c (limited to 'bar.c') diff --git a/bar.c b/bar.c new file mode 100644 index 0000000..8d4fb36 --- /dev/null +++ b/bar.c @@ -0,0 +1,18 @@ +/* + * (C)opyright MMVI Anselm R. Garbe + * 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); +} -- cgit v1.2.3-54-g00ecf