dwm-flexipatch-zombie/patch/sticky.c

8 lines
133 B
C
Raw Normal View History

2021-06-10 23:20:40 -04:00
void
togglesticky(const Arg *arg)
{
if (!selmon->sel)
return;
selmon->sel->issticky = !selmon->sel->issticky;
arrange(selmon);
}