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