PAM-less i3lock-color fork
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef _XINERAMA_H
|
|
|
|
#define _XINERAMA_H
|
|
|
|
|
|
|
|
typedef struct Rect {
|
|
|
|
int16_t x;
|
|
|
|
int16_t y;
|
|
|
|
uint16_t width;
|
|
|
|
uint16_t height;
|
|
|
|
} Rect;
|
|
|
|
|
|
|
|
extern int xr_screens;
|
|
|
|
extern Rect *xr_resolutions;
|
|
|
|
|
|
|
|
void xinerama_init();
|
|
|
|
void xinerama_query_screens();
|
|
|
|
|
|
|
|
#endif
|