about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-25 14:46:01 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-25 14:46:01 +0200
commit9f35cc52fe27f694ce146356e6c71267ecd19217 (patch)
tree7859ea55091baf761d83129001fbb1a36ed49c16
parentf1fe19bc2b0b1744a82551ef2580e621231cd97e (diff)
downloaddwm-9f35cc52fe27f694ce146356e6c71267ecd19217.tar.gz
small fix to separate client title from right-most tag
-rw-r--r--draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/draw.c b/draw.c
index ff6f779..7da24f2 100644
--- a/draw.c
+++ b/draw.c
@@ -94,7 +94,7 @@ drawall()
 void
 drawstatus()
 {
-	static const char *mode[] = { "~", "=" };
+	static const char *mode[] = { "~", "|" };
 	int i, x;
 
 	dc.x = dc.y = 0;
@@ -114,7 +114,7 @@ drawstatus()
 		else
 			drawtext(tags[i], dc.norm, sel && sel->tags[i]);
 	}
-	x = dc.x + dc.w;
+	x = dc.x + dc.w + 1;
 	dc.w = textw(stext);
 	dc.x = bx + bw - dc.w;
 	if(dc.x < x) {
42'>142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 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
='alt'>
4b034492 ^
1
2
3
4
5
6
7
8
9
10