You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
260 B

18 years ago
  1. /*
  2. * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
  3. * See LICENSE file for license details.
  4. */
  5. #include "wm.h"
  6. #include <stdio.h>
  7. void
  8. run(char *arg)
  9. {
  10. spawn(dpy, arg);
  11. }
  12. void
  13. quit(char *arg)
  14. {
  15. fputs("quit\n", stderr);
  16. running = False;
  17. }