new stuff
272e15c4
1 file(s) · +20 −0
| 1 | + | /* |
|
| 2 | + | * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> |
|
| 3 | + | * See LICENSE file for license details. |
|
| 4 | + | */ |
|
| 5 | + | ||
| 6 | + | #include "wm.h" |
|
| 7 | + | #include <stdio.h> |
|
| 8 | + | ||
| 9 | + | void |
|
| 10 | + | run(char *arg) |
|
| 11 | + | { |
|
| 12 | + | spawn(dpy, arg); |
|
| 13 | + | } |
|
| 14 | + | ||
| 15 | + | void |
|
| 16 | + | quit(char *arg) |
|
| 17 | + | { |
|
| 18 | + | fputs("quit\n", stderr); |
|
| 19 | + | running = False; |
|
| 20 | + | } |