i3lock/xinerama.h

15 lines
204 B
C

#ifndef _XINERAMA_H
#define _XINERAMA_H
typedef struct Rect {
int16_t x;
int16_t y;
uint16_t width;
uint16_t height;
} Rect;
void xinerama_init();
void xinerama_query_screens();
#endif