diff --git a/Makefile b/Makefile index c75f6f3..d447aa7 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ include config.mk -SRC = bar.c client.c dev.c draw.c event.c main.c util.c +SRC = client.c dev.c draw.c event.c main.c util.c OBJ = ${SRC:.c=.o} MAN1 = dumbwm.1 BIN = dumbwm diff --git a/bar.c b/bar.c deleted file mode 100644 index b646f20..0000000 --- a/bar.c +++ /dev/null @@ -1,16 +0,0 @@ -/* - * (C)opyright MMVI Anselm R. Garbe - * See LICENSE file for license details. - */ - -#include "dumbwm.h" - -void -barclick(XButtonPressedEvent *e) -{ -} - -void -draw_bar() -{ -} diff --git a/client.c b/client.c index 2905752..dd718ed 100644 --- a/client.c +++ b/client.c @@ -67,8 +67,6 @@ view(Arg *arg) tsel = arg->i; arrange(NULL); - for(c = clients; c; c = next(c->next)) - draw_bar(); } void diff --git a/dumbwm b/dumbwm deleted file mode 100755 index 5f5f9ae..0000000 Binary files a/dumbwm and /dev/null differ diff --git a/main.c b/main.c index 7bfac52..c7e09b7 100644 --- a/main.c +++ b/main.c @@ -261,7 +261,6 @@ main(int argc, char *argv[]) dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen)); dc.gc = XCreateGC(dpy, root, 0, 0); - draw_bar(); issel = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask); @@ -309,7 +308,6 @@ Mainloop: stext[n++] = i; } stext[n] = 0; - draw_bar(); } } }