JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added symbols for different modes
authorAnselm R. Garbe <arg@10kloc.org>
Fri, 29 Sep 2006 16:08:20 +0000 (18:08 +0200)
committerAnselm R. Garbe <arg@10kloc.org>
Fri, 29 Sep 2006 16:08:20 +0000 (18:08 +0200)
config.arg.h
config.default.h
draw.c
main.c

index 6a36c22..7817825 100644 (file)
@@ -8,8 +8,9 @@ const char *tags[] = { "dev", "work", "net", "fnord", NULL };
 
 #define DEFMODE                        dotile          /* dofloat */
 #define FLOATSYMBOL            "><>"
-#define STACKPOS               StackRight      /* StackLeft, StackBottom */
-#define TILESYMBOL             "[]="
+#define STACKPOS               StackRight      /* StackLeft */
+#define BSTACKSYMBOL           "==="
+#define VSTACKSYMBOL           "[]="
 
 #define FONT                   "-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
 #define NORMBGCOLOR            "#333333"
index 8075110..8075264 100644 (file)
@@ -9,7 +9,8 @@ const char *tags[] = { "1", "2", "3", "4", "5", NULL };
 #define DEFMODE                        dotile /* dofloat */
 #define FLOATSYMBOL            "><>"
 #define STACKPOS               StackRight      /* StackLeft */
-#define TILESYMBOL             "[]="
+#define BSTACKSYMBOL           "==="
+#define VSTACKSYMBOL           "[]="
 
 #define FONT                   "fixed"
 #define NORMBGCOLOR            "#333366"
diff --git a/draw.c b/draw.c
index 362d025..dc2bdb6 100644 (file)
--- a/draw.c
+++ b/draw.c
@@ -104,7 +104,9 @@ drawstatus(void) {
        }
 
        dc.w = bmw;
-       drawtext(arrange == dofloat ? FLOATSYMBOL : TILESYMBOL, dc.status, False);
+       drawtext(arrange == dofloat ?
+               FLOATSYMBOL : stackpos == StackBottom ?
+                       BSTACKSYMBOL : VSTACKSYMBOL, dc.status, False);
 
        x = dc.x + dc.w;
        dc.w = textw(stext);
diff --git a/main.c b/main.c
index a1fdde1..6de4f8a 100644 (file)
--- a/main.c
+++ b/main.c
@@ -128,8 +128,11 @@ setup(void) {
        dc.status[ColBG] = getcolor(STATUSBGCOLOR);
        dc.status[ColFG] = getcolor(STATUSFGCOLOR);
        setfont(FONT);
-
-       bmw = textw(FLOATSYMBOL) > textw(TILESYMBOL) ? textw(FLOATSYMBOL) : textw(TILESYMBOL);
+       bmw = textw(VSTACKSYMBOL) > textw(BSTACKSYMBOL) ?
+               textw(VSTACKSYMBOL) : textw(BSTACKSYMBOL);
+       bmw = bmw > textw(FLOATSYMBOL) ?
+               bmw : textw(FLOATSYMBOL);
        sx = sy = 0;
        sw = DisplayWidth(dpy, screen);
        sh = DisplayHeight(dpy, screen);