I prefer the tiled/floating indicator on the right side
This commit is contained in:
parent
54775e0b3e
commit
91a1f6926e
14
bar.c
14
bar.c
@ -22,16 +22,15 @@ barclick(XButtonPressedEvent *e)
|
|||||||
void
|
void
|
||||||
draw_bar()
|
draw_bar()
|
||||||
{
|
{
|
||||||
int i;
|
int i, modw;
|
||||||
char *mode = arrange == tiling ? "#" : "~";
|
char *mode = arrange == tiling ? "#" : "~";
|
||||||
|
|
||||||
dc.x = dc.y = 0;
|
dc.x = dc.y = 0;
|
||||||
dc.w = bw;
|
dc.w = bw;
|
||||||
drawtext(NULL, False, False);
|
drawtext(NULL, False, False);
|
||||||
|
|
||||||
dc.w = textw(mode) + dc.font.height;
|
modw = textw(mode) + dc.font.height;
|
||||||
drawtext(mode, True, True);
|
dc.w = 0;
|
||||||
|
|
||||||
for(i = 0; i < TLast; i++) {
|
for(i = 0; i < TLast; i++) {
|
||||||
dc.x += dc.w;
|
dc.x += dc.w;
|
||||||
dc.w = textw(tags[i]) + dc.font.height;
|
dc.w = textw(tags[i]) + dc.font.height;
|
||||||
@ -43,8 +42,13 @@ draw_bar()
|
|||||||
drawtext(sel->name, True, True);
|
drawtext(sel->name, True, True);
|
||||||
}
|
}
|
||||||
dc.w = textw(stext) + dc.font.height;
|
dc.w = textw(stext) + dc.font.height;
|
||||||
dc.x = bx + bw - dc.w;
|
dc.x = bx + bw - dc.w - modw;
|
||||||
drawtext(stext, False, False);
|
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);
|
XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
|
||||||
XFlush(dpy);
|
XFlush(dpy);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user