aewl
annotate cmd.c @ 12:a2b399582afe
new stuff
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Tue, 11 Jul 2006 14:53:22 +0200 |
parents | |
children | 5cc5e55a132d |
rev | line source |
---|---|
garbeam@12 | 1 /* |
garbeam@12 | 2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> |
garbeam@12 | 3 * See LICENSE file for license details. |
garbeam@12 | 4 */ |
garbeam@12 | 5 |
garbeam@12 | 6 #include "wm.h" |
garbeam@12 | 7 #include <stdio.h> |
garbeam@12 | 8 |
garbeam@12 | 9 void |
garbeam@12 | 10 run(char *arg) |
garbeam@12 | 11 { |
garbeam@12 | 12 spawn(dpy, arg); |
garbeam@12 | 13 } |
garbeam@12 | 14 |
garbeam@12 | 15 void |
garbeam@12 | 16 quit(char *arg) |
garbeam@12 | 17 { |
garbeam@12 | 18 fputs("quit\n", stderr); |
garbeam@12 | 19 running = False; |
garbeam@12 | 20 } |