dotfiles-mirror/dwm/patch/sticky.c
2026-02-17 22:49:02 +03:30

9 lines
135 B
C
Executable file

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