dotfiles-mirror/dwm/patch/sticky.c

10 lines
135 B
C
Raw Permalink Normal View History

2026-02-05 03:05:24 +03:30
void
togglesticky(const Arg *arg)
{
if (!selmon->sel)
return;
selmon->sel->issticky = !selmon->sel->issticky;
arrange(selmon);
}