X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=cmd.c;h=c14c3e60e86ecd3b0daeaebb68325abe943c18da;hp=4f1c84bce960472b8f58fc54a40be40812476ec2;hb=2a0fc84c4af2257d79c4c7cb37131c4acb763162;hpb=896f08d7d553f7def3877648c113cf03e6ca546a diff --git a/cmd.c b/cmd.c index 4f1c84b..c14c3e6 100644 --- a/cmd.c +++ b/cmd.c @@ -20,6 +20,22 @@ quit(void *aux) } void +sel(void *aux) +{ + const char *arg = aux; + Client *c; + + if(!arg || !stack) + return; + if(!strncmp(arg, "next", 5)) + focus(stack->snext ? stack->snext : stack); + else if(!strncmp(arg, "prev", 5)) { + for(c = stack; c && c->snext; c = c->snext); + focus(c ? c : stack); + } +} + +void kill(void *aux) { Client *c = stack;