added several other stuff
This commit is contained in:
parent
2de59d0f09
commit
439e15d09f
12 changed files with 476 additions and 39 deletions
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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue