1
0
mirror of https://github.com/mintycube/dwm.git synced 2024-10-22 12:05:45 +00:00

8 lines
133 B
C
Raw Normal View History

2019-09-15 00:43:35 +02:00
void
togglesticky(const Arg *arg)
{
if (!selmon->sel)
return;
selmon->sel->issticky = !selmon->sel->issticky;
arrange(selmon);
}