dwm/patch/togglefullscreen.c

7 lines
140 B
C
Raw Normal View History

2019-09-05 23:27:33 +02:00
void
togglefullscreen(const Arg *arg) {
if (!selmon->sel)
return;
setfullscreen(selmon->sel, !selmon->sel->isfullscreen);
}