Mercurial > dwm-meillo
changeset 12:a2b399582afe
new stuff
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Tue, 11 Jul 2006 14:53:22 +0200 |
parents | ea9c08ec4b48 |
children | 5cc5e55a132d |
files | cmd.c |
diffstat | 1 files changed, 20 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cmd.c Tue Jul 11 14:53:22 2006 +0200 @@ -0,0 +1,20 @@ +/* + * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> + * See LICENSE file for license details. + */ + +#include "wm.h" +#include <stdio.h> + +void +run(char *arg) +{ + spawn(dpy, arg); +} + +void +quit(char *arg) +{ + fputs("quit\n", stderr); + running = False; +}