diff options
Diffstat (limited to 'wm.c')
-rw-r--r-- | wm.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/wm.c b/wm.c index f0069d2..02b9a68 100644 --- a/wm.c +++ b/wm.c @@ -175,6 +175,18 @@ cleanup() XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime); } +void +run(void *aux) +{ + spawn(dpy, aux); +} + +void +quit(void *aux) +{ + running = False; +} + int main(int argc, char *argv[]) { |