commit da8eac4c1b2c56ae246c4dd58b0de144cc7e62b5
parent fb2757eff8121b09ce7d25e55057d82c088a002a
Author: hhvn <dev@haydenvh.com>
Date: Sun, 28 Mar 2021 16:49:49 +0100
tabbed.c: change styling for numbering of tabs
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tabbed.c b/tabbed.c
@@ -368,7 +368,7 @@ drawbar(void)
} else {
col = clients[c]->urgent ? dc.urg : dc.norm;
}
- snprintf(tabtitle, sizeof(tabtitle), "[%d] %s",
+ snprintf(tabtitle, sizeof(tabtitle), "%d: %s",
c + 1, clients[c]->name);
drawtext(tabtitle, col);
dc.x += dc.w;