Adding tagothermonitor patch
This commit is contained in:
29
patch/tagothermonitor.c
Normal file
29
patch/tagothermonitor.c
Normal file
@ -0,0 +1,29 @@
|
||||
void
|
||||
tagnextmon(const Arg *arg)
|
||||
{
|
||||
tagothermon(arg, 1);
|
||||
}
|
||||
|
||||
void
|
||||
tagprevmon(const Arg *arg)
|
||||
{
|
||||
tagothermon(arg, -1);
|
||||
}
|
||||
|
||||
void
|
||||
tagothermon(const Arg *arg, int dir)
|
||||
{
|
||||
Client *sel;
|
||||
Monitor *newmon;
|
||||
|
||||
if (!selmon->sel || !mons->next)
|
||||
return;
|
||||
sel = selmon->sel;
|
||||
newmon = dirtomon(dir);
|
||||
sendmon(sel, newmon);
|
||||
if (arg->ui & TAGMASK) {
|
||||
sel->tags = arg->ui & TAGMASK;
|
||||
focus(NULL);
|
||||
arrange(newmon);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user