some more additions/fixes
This commit is contained in:
16
cmd.c
16
cmd.c
@ -19,6 +19,22 @@ quit(void *aux)
|
||||
running = False;
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user