summaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
authoruint23 <[email protected]>2025-04-21 00:01:43 +0100
committeruint23 <[email protected]>2025-04-21 00:01:43 +0100
commit149c0723a99bd0a5f81bb466321417b38706aa72 (patch)
tree024f5000efd9373e40ba7d8855af62477c5735a0 /src/defs.h
parentad6f942ba97df41b39108aa862c439b777be536a (diff)
Xinerama multimonitor support
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/defs.h b/src/defs.h
index 00b81c0..4e47e70 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -89,10 +89,16 @@ typedef struct Client{
Window win;
uint x, y, h, w;
uint orig_x, orig_y, orig_w, orig_h;
+ int mon;
Bool fixed;
Bool floating;
Bool fullscreen;
struct Client *next;
} Client;
+typedef struct {
+ int x, y;
+ uint w, h;
+} Monitor;
+
#endif