Xinqi Bao's Git
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
3 * See LICENSE file for license details.
25 const char *arg
= aux
;
30 if(!strncmp(arg
, "next", 5))
31 focus(stack
->snext
? stack
->snext
: stack
);
32 else if(!strncmp(arg
, "prev", 5)) {
33 for(c
= stack
; c
&& c
->snext
; c
= c
->snext
);
45 if(c
->proto
& WM_PROTOCOL_DELWIN
)
46 send_message(c
->win
, wm_atom
[WMProtocols
], wm_atom
[WMDelete
]);
48 XKillClient(dpy
, c
->win
);