mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-09 01:10:26 +00:00
35 lines
602 B
C
35 lines
602 B
C
static int combo = 0;
|
|
|
|
void
|
|
keyrelease(XEvent *e) {
|
|
combo = 0;
|
|
}
|
|
|
|
void
|
|
combotag(const Arg *arg) {
|
|
if(selmon->sel && arg->ui & TAGMASK) {
|
|
if (combo) {
|
|
selmon->sel->tags |= arg->ui & TAGMASK;
|
|
} else {
|
|
combo = 1;
|
|
selmon->sel->tags = arg->ui & TAGMASK;
|
|
}
|
|
focus(NULL);
|
|
arrange(selmon);
|
|
}
|
|
}
|
|
|
|
void
|
|
comboview(const Arg *arg) {
|
|
unsigned newtags = arg->ui & TAGMASK;
|
|
if (combo) {
|
|
selmon->tagset[selmon->seltags] |= newtags;
|
|
} else {
|
|
selmon->seltags ^= 1; /*toggle tagset*/
|
|
combo = 1;
|
|
if (newtags)
|
|
selmon->tagset[selmon->seltags] = newtags;
|
|
}
|
|
focus(NULL);
|
|
arrange(selmon);
|
|
} |