added several other stuff

This commit is contained in:
Anselm R. Garbe
2006-07-10 22:16:48 +02:00
parent 2de59d0f09
commit 439e15d09f
12 changed files with 476 additions and 39 deletions

18
bar.c Normal file
View File

@ -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);
}