Further bar renaming

This commit is contained in:
bakkeby
2020-07-15 09:26:16 +02:00
parent 903b32ac8b
commit f2da4d20d9
11 changed files with 21 additions and 166 deletions

27
patch/bar_statuscolors.c Normal file
View File

@@ -0,0 +1,27 @@
int
textw_wosc(char *s)
{
char *ts = s;
char *tp = s;
int sw = 0;
char ctmp;
while (1) {
if ((unsigned int)*ts > LENGTH(colors)) {
ts++;
continue;
}
ctmp = *ts;
*ts = '\0';
#if BAR_PANGO_PATCH
sw += drw_font_getwidth(drw, tp, True);
#else
sw += drw_fontset_getwidth(drw, tp);
#endif // BAR_PANGO_PATCH
*ts = ctmp;
if (ctmp == '\0')
break;
tp = ++ts;
}
return sw;
}