dwm-custom/patch/togglefullscreen.c

11 lines
126 B
C
Raw Permalink Normal View History

2024-05-22 17:29:40 +02:00
void
togglefullscreen(const Arg *arg)
{
Client *c = selmon->sel;
if (!c)
return;
setfullscreen(c, !c->isfullscreen);
}