X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=cmd.c;fp=cmd.c;h=0000000000000000000000000000000000000000;hb=4641aa2925731ac180b08c80f57db176391ea4a9;hp=baa3ae94fabe163243c5042e7417643c27712fd3;hpb=dfd84f9bf3b9d949412a73bc62a43109b340d395;p=dwm.git diff --git a/cmd.c b/cmd.c deleted file mode 100644 index baa3ae9..0000000 --- a/cmd.c +++ /dev/null @@ -1,52 +0,0 @@ -/* - * (C)opyright MMVI Anselm R. Garbe - * See LICENSE file for license details. - */ - -#include "wm.h" -#include -#include - -void -run(void *aux) -{ - spawn(dpy, aux); -} - -void -quit(void *aux) -{ - running = False; -} - -void -sel(void *aux) -{ - const char *arg = aux; - Client *c = NULL; - - if(!arg || !stack) - return; - if(!strncmp(arg, "next", 5)) - c = stack->snext ? stack->snext : stack; - else if(!strncmp(arg, "prev", 5)) - for(c = stack; c && c->snext; c = c->snext); - if(!c) - c = stack; - raise(c); - focus(c); -} - -void -kill(void *aux) -{ - 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); -} -