]> git.sur5r.net Git - i3/i3/blob - include/fake_outputs.h
Ensure all *.[ch] files include config.h
[i3/i3] / include / fake_outputs.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * Faking outputs is useful in pathological situations (like network X servers
8  * which don’t support multi-monitor in a useful way) and for our testsuite.
9  *
10  */
11 #pragma once
12
13 #include <config.h>
14
15 /**
16  * Creates outputs according to the given specification.
17  * The specification must be in the format wxh+x+y, for example 1024x768+0+0,
18  * with multiple outputs separated by commas:
19  *   1900x1200+0+0,1280x1024+1900+0
20  *
21  */
22 void fake_outputs_init(const char *output_spec);