mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2024-10-27 05:23:10 -04:00
17 lines
294 B
C
17 lines
294 B
C
#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 randr_init(int *event_base, xcb_window_t root);
|
|
void randr_query(xcb_window_t root);
|
|
|
|
#endif
|