suckless-utils/dwm-flexipatch/patch/sticky.c

10 lines
135 B
C
Raw Normal View History

2023-09-14 16:27:51 +02:00
void
togglesticky(const Arg *arg)
{
if (!selmon->sel)
return;
selmon->sel->issticky = !selmon->sel->issticky;
arrange(selmon);
}