1
0
mirror of https://github.com/mintycube/dwm.git synced 2024-10-22 12:05:45 +00:00
dwm/patch/togglefullscreen.c
2019-09-05 23:27:33 +02:00

7 lines
140 B
C

void
togglefullscreen(const Arg *arg) {
if (!selmon->sel)
return;
setfullscreen(selmon->sel, !selmon->sel->isfullscreen);
}