mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2026-02-06 15:13:45 +01:00
10 lines
135 B
C
10 lines
135 B
C
|
|
void
|
||
|
|
togglesticky(const Arg *arg)
|
||
|
|
{
|
||
|
|
if (!selmon->sel)
|
||
|
|
return;
|
||
|
|
selmon->sel->issticky = !selmon->sel->issticky;
|
||
|
|
arrange(selmon);
|
||
|
|
}
|
||
|
|
|