2010-03-09 20:00:56 +01:00
|
|
|
/*
|
2011-10-25 22:19:38 +02:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-03-09 20:00:56 +01:00
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2010-03-09 20:00:56 +01:00
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
* This is LEGACY code (we support RandR, which can do much more than
|
|
|
|
* Xinerama), but necessary for the poor users of the nVidia binary
|
|
|
|
* driver which does not support RandR in 2011 *sigh*.
|
2010-03-09 20:00:56 +01:00
|
|
|
*
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
#pragma once
|
2010-03-09 20:00:56 +01:00
|
|
|
|
2011-10-25 22:19:38 +02:00
|
|
|
#include "data.h"
|
|
|
|
|
2010-03-09 20:00:56 +01:00
|
|
|
/**
|
|
|
|
* We have just established a connection to the X server and need the initial
|
|
|
|
* Xinerama information to setup workspaces for each screen.
|
|
|
|
*
|
|
|
|
*/
|
2012-03-31 10:53:04 +02:00
|
|
|
void xinerama_init(void);
|