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

10
cmd.c
View File

@ -5,22 +5,22 @@
#include "wm.h"
#include <stdio.h>
#include <string.h>
void
run(char *arg)
run(void *aux)
{
spawn(dpy, arg);
spawn(dpy, aux);
}
void
quit(char *arg)
quit(void *aux)
{
fputs("quit\n", stderr);
running = False;
}
void
kill(char *arg)
kill(void *aux)
{
Client *c = stack;