dwm/cmd.c

35 lines
454 B
C
Raw Normal View History

2006-07-11 14:53:22 +02:00
/*
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
#include "wm.h"
#include <stdio.h>
2006-07-11 18:15:11 +02:00
#include <string.h>
2006-07-11 14:53:22 +02:00
void
2006-07-11 18:15:11 +02:00
run(void *aux)
2006-07-11 14:53:22 +02:00
{
2006-07-11 18:15:11 +02:00
spawn(dpy, aux);
2006-07-11 14:53:22 +02:00
}
void
2006-07-11 18:15:11 +02:00
quit(void *aux)
2006-07-11 14:53:22 +02:00
{
running = False;
}
2006-07-11 16:14:22 +02:00
void
2006-07-11 18:15:11 +02:00
kill(void *aux)
2006-07-11 16:14:22 +02:00
{
Client *c = stack;
if(!c)
return;
if(c->proto & WM_PROTOCOL_DELWIN)
send_message(c->win, wm_atom[WMProtocols], wm_atom[WMDelete]);
else
XKillClient(dpy, c->win);
}