add support for mouse based group {,r}cycle; from Rodrigo Mosconi. not

bound by default.
This commit is contained in:
okan
2013-07-08 18:39:20 +00:00
parent 1f244fe29c
commit 9bf2498d7e
4 changed files with 23 additions and 1 deletions

View File

@ -201,6 +201,18 @@ mousefunc_client_hide(struct client_ctx *cc, void *arg)
client_hide(cc);
}
void
mousefunc_client_cyclegroup(struct client_ctx *cc, void *arg)
{
group_cycle(cc->sc, CWM_CYCLE);
}
void
mousefunc_client_rcyclegroup(struct client_ctx *cc, void *arg)
{
group_cycle(cc->sc, CWM_RCYCLE);
}
void
mousefunc_menu_group(struct client_ctx *cc, void *arg)
{