dwm-flexipatch-zombie/patch/sticky.c
2021-06-10 23:20:40 -04:00

8 lines
No EOL
133 B
C

void
togglesticky(const Arg *arg)
{
if (!selmon->sel)
return;
selmon->sel->issticky = !selmon->sel->issticky;
arrange(selmon);
}