mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 14:05:45 +02: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);
|
|
}
|
|
|