added bar event timer

This commit is contained in:
Anselm R. Garbe
2006-07-11 18:15:11 +02:00
parent 3399650076
commit 586f66331d
9 changed files with 87 additions and 51 deletions

9
wm.h
View File

@ -42,8 +42,8 @@ struct Client {
struct Key {
unsigned long mod;
KeySym keysym;
void (*func)(char *arg);
char *arg;
void (*func)(void *aux);
void *aux;
};
extern Display *dpy;
@ -64,8 +64,9 @@ extern Client *clients, *stack;
extern void draw_bar();
/* cmd.c */
extern void run(char *arg);
extern void quit(char *arg);
extern void run(void *aux);
extern void quit(void *aux);
extern void kill(void *aux);
/* client.c */
extern void manage(Window w, XWindowAttributes *wa);