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
|
2011-10-25 22:19:38 +02:00
|
|
|
* © 2009-2011 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef _XINERAMA_H
|
|
|
|
#define _XINERAMA_H
|
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
*/
|
2010-03-27 15:25:51 +01:00
|
|
|
void xinerama_init();
|
2010-03-09 20:00:56 +01:00
|
|
|
|
|
|
|
#endif
|