mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2026-03-21 23:19:22 +01:00
9 lines
135 B
C
Executable file
9 lines
135 B
C
Executable file
void
|
|
togglesticky(const Arg *arg)
|
|
{
|
|
if (!selmon->sel)
|
|
return;
|
|
selmon->sel->issticky = !selmon->sel->issticky;
|
|
arrange(selmon);
|
|
}
|
|
|