Initial commit.

This commit is contained in:
Storm Dragon
2026-06-02 17:29:55 -04:00
commit db522d7d66
33 changed files with 4017 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#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