aewl

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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/cmd.c	Tue Jul 11 14:53:22 2006 +0200
     1.3 @@ -0,0 +1,20 @@
     1.4 +/*
     1.5 + * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
     1.6 + * See LICENSE file for license details.
     1.7 + */
     1.8 +
     1.9 +#include "wm.h"
    1.10 +#include <stdio.h>
    1.11 +
    1.12 +void
    1.13 +run(char *arg)
    1.14 +{
    1.15 +	spawn(dpy, arg);
    1.16 +}
    1.17 +
    1.18 +void
    1.19 +quit(char *arg)
    1.20 +{
    1.21 +	fputs("quit\n", stderr);
    1.22 +	running = False;
    1.23 +}