JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
some more additions/fixes
[dwm.git] / cmd.c
diff --git a/cmd.c b/cmd.c
index 4f1c84b..c14c3e6 100644 (file)
--- 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;