Files
2026-07-12 08:16:17 +03:30

10 lines
135 B
C
Executable File

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