added bar event timer
This commit is contained in:
parent
3399650076
commit
586f66331d
9 changed files with 87 additions and 51 deletions
9
wm.h
9
wm.h
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue