added several other stuff
This commit is contained in:
18
bar.c
Normal file
18
bar.c
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user