2012-04-09 14:27:33 +02:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2012-04-09 14:27:33 +02:00
|
|
|
|
*
|
|
|
|
|
* Faking outputs is useful in pathological situations (like network X servers
|
|
|
|
|
* which don’t support multi-monitor in a useful way) and for our testsuite.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
|
#pragma once
|
2012-04-09 14:27:33 +02:00
|
|
|
|
|
2016-10-11 09:13:35 +02:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2012-04-09 14:27:33 +02:00
|
|
|
|
/**
|
|
|
|
|
* Creates outputs according to the given specification.
|
|
|
|
|
* The specification must be in the format wxh+x+y, for example 1024x768+0+0,
|
|
|
|
|
* with multiple outputs separated by commas:
|
|
|
|
|
* 1900x1200+0+0,1280x1024+1900+0
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void fake_outputs_init(const char *output_spec);
|