about summary refs log tree commit diff stats
path: root/bar.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-14 18:59:25 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-14 18:59:25 +0200
commit91a1f6926e2594156219c1caaf4729c5d86498a5 (patch)
tree40e03a06be30260661c892156ca8a2c2f7813dad /bar.c
parent54775e0b3e48273240d8efa619af0ce85e3685da (diff)
downloaddwm-91a1f6926e2594156219c1caaf4729c5d86498a5.tar.gz
I prefer the tiled/floating indicator on the right side
Diffstat (limited to 'bar.c')
-rw-r--r--bar.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/bar.c b/bar.c
index 953ac6b..3027bc2 100644
--- a/bar.c
+++ b/bar.c
@@ -22,16 +22,15 @@ barclick(XButtonPressedEvent *e)
 void
 draw_bar()
 {
-	int i;
+	int i, modw;
 	char *mode = arrange == tiling ? "#" : "~";
 
 	dc.x = dc.y = 0;
 	dc.w = bw;
 	drawtext(NULL, False, False);
 
-	dc.w = textw(mode) + dc.font.height;
-	drawtext(mode, True, True);
-
+	modw = textw(mode) + dc.font.height;
+	dc.w = 0;
 	for(i = 0; i < TLast; i++) {
 		dc.x += dc.w;
 		dc.w = textw(tags[i]) + dc.font.height;
@@ -43,8 +42,13 @@ draw_bar()
 		drawtext(sel->name, True, True);
 	}
 	dc.w = textw(stext) + dc.font.height;
-	dc.x = bx + bw - dc.w;
+	dc.x = bx + bw - dc.w - modw;
 	drawtext(stext, False, False);
+
+	dc.x = bx + bw - modw;
+	dc.w = modw;
+	drawtext(mode, True, True);
+
 	XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
 	XFlush(dpy);
 }
8 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235