new stuff
authorAnselm R. Garbe <garbeam@wmii.de>
Tue, 11 Jul 2006 14:53:22 +0200
changeset 12 a2b399582afe
parent 11 ea9c08ec4b48
child 13 5cc5e55a132d
new stuff
cmd.c
--- /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;
+}