JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
new stuff
authorAnselm R. Garbe <garbeam@wmii.de>
Tue, 11 Jul 2006 12:53:22 +0000 (14:53 +0200)
committerAnselm R. Garbe <garbeam@wmii.de>
Tue, 11 Jul 2006 12:53:22 +0000 (14:53 +0200)
cmd.c [new file with mode: 0644]

diff --git a/cmd.c b/cmd.c
new file mode 100644 (file)
index 0000000..8244540
--- /dev/null
+++ b/cmd.c
@@ -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;
+}