modified: client.c

This commit is contained in:
exkc 2022-07-20 16:55:16 +08:00
parent d5c9632edc
commit 689e5c2d64
5 changed files with 1 additions and 21 deletions

View File

@ -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

16
bar.c
View File

@ -1,16 +0,0 @@
/*
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
#include "dumbwm.h"
void
barclick(XButtonPressedEvent *e)
{
}
void
draw_bar()
{
}

View File

@ -67,8 +67,6 @@ view(Arg *arg)
tsel = arg->i;
arrange(NULL);
for(c = clients; c; c = next(c->next))
draw_bar();
}
void

BIN
dumbwm

Binary file not shown.

2
main.c
View File

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