Browse Source

new stuff

Anselm R. Garbe 19 năm trước cách đây
mục cha
commit
272e15c4b7
1 tập tin đã thay đổi với 20 bổ sung0 xóa
  1. 20 0
      cmd.c

+ 20 - 0
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;
+}