about summary refs log tree commit diff
path: root/screen.c
diff options
context:
space:
mode:
authoroga <oga>2009-12-11 18:09:16 +0000
committeroga <oga>2009-12-11 18:09:16 +0000
commit3b87bdb04759237cc4dbdca600854d1f95659fff (patch)
tree16334055e05b20580e13a051a841b5534315bb5a /screen.c
parent28e94b2fbcb7ca75059a9334ab9f0bcfac3787a0 (diff)
downloadcwm-3b87bdb04759237cc4dbdca600854d1f95659fff.tar.gz
cwm-3b87bdb04759237cc4dbdca600854d1f95659fff.tar.xz
cwm-3b87bdb04759237cc4dbdca600854d1f95659fff.zip
add _NET_WORKAREA. for now we ignore the gap, this'll change soonish.
ok okan@
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/screen.c b/screen.c
index 02fea44..3610bf7 100644
--- a/screen.c
+++ b/screen.c
@@ -102,10 +102,23 @@ screen_find_xinerama(struct screen_ctx *sc, int x, int y)
 void
 screen_update_geometry(struct screen_ctx *sc, int width, int height)
 {
-	long	geom[2];
+	long	 geom[2], workareas[CALMWM_NGROUPS][4];
+	int	 i;
 
 	sc->xmax = geom[0] = width;
 	sc->ymax = geom[1] = height;
 	XChangeProperty(X_Dpy, sc->rootwin, _NET_DESKTOP_GEOMETRY,
 	    XA_CARDINAL, 32, PropModeReplace, (unsigned char *)geom , 2);
+
+	/* x, y, width, height. XXX gap */
+	for (i = 0; i < CALMWM_NGROUPS; i++) {
+		workareas[i][0] = 0;
+		workareas[i][1] = 0;
+		workareas[i][2] = width;
+		workareas[i][3] = height;
+	}
+
+	XChangeProperty(X_Dpy, sc->rootwin, _NET_WORKAREA,
+	    XA_CARDINAL, 32, PropModeReplace,
+	    (unsigned char *)workareas, CALMWM_NGROUPS * 4);
 }