]> git.sur5r.net Git - i3/i3/blob - include/fake_outputs.h
Merge branch 'next'
[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-2012 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 #ifndef I3_FAKE_OUTPUTS_H
12 #define I3_FAKE_OUTPUTS_H
13
14 /**
15  * Creates outputs according to the given specification.
16  * The specification must be in the format wxh+x+y, for example 1024x768+0+0,
17  * with multiple outputs separated by commas:
18  *   1900x1200+0+0,1280x1024+1900+0
19  *
20  */
21 void fake_outputs_init(const char *output_spec);
22
23 #endif