projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26e134b
)
new stuff
author
Anselm R. Garbe
<garbeam@wmii.de>
Tue, 11 Jul 2006 12:53:22 +0000
(14:53 +0200)
committer
Anselm R. Garbe
<garbeam@wmii.de>
Tue, 11 Jul 2006 12:53:22 +0000
(14:53 +0200)
cmd.c
[new file with mode: 0644]
patch
|
blob
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;
+}