summaryrefslogtreecommitdiffhomepage
path: root/patch/fullscreen.c
blob: ac50f37f6a5e6fbb1bd9ca7ed11dc9bd308e278d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Layout *last_layout;

void
fullscreen(const Arg *arg)
{
	if (selmon->showbar || last_layout == NULL) {
		for (last_layout = (Layout *)layouts; last_layout != selmon->lt[selmon->sellt]; last_layout++);
		setlayout(&((Arg) { .v = &layouts[MONOCLE_LAYOUT_POS] }));
	} else {
		setlayout(&((Arg) { .v = last_layout }));
	}
	togglebar(arg);
}