Mercurial > dwm-meillo
diff bar.c @ 5:e5018cae273f
added several other stuff
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Mon, 10 Jul 2006 22:16:48 +0200 |
parents | |
children | 5c078b66347b |
line wrap: on
line diff
--- /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); +}