If the terminal window is only 80 characters wide, the num_played
value may be adjacent to the bitrate value, with no space between.
This happens only if the num_played value is bigger than 99, and only
with the "colorful blackness" theme.
This simple patch should fix the issue.
d[SI_num_played].color.fg = COLOR_RED;
d[SI_num_played].color.bg = COLOR_BLACK;
d[SI_num_played].align = LEFT;
- d[SI_num_played].x = 60;
+ d[SI_num_played].x = 58;
d[SI_num_played].y = 17;
d[SI_num_played].len = 5;