Lemonbar's format strings start with %, therefore we need to escape this character if we want to print a literal % by doubling it: %%. Currently, blocks have to make sure to do this escaping by outputting two percent signs if they want to print one. This, however, is inconvenient and messes with the padding option.
Instead, succade should take care of the escaping and account for it when applying padding.
Lemonbar's format strings start with
%
, therefore we need to escape this character if we want to print a literal%
by doubling it:%%
. Currently, blocks have to make sure to do this escaping by outputting two percent signs if they want to print one. This, however, is inconvenient and messes with thepadding
option.Instead, succade should take care of the escaping and account for it when applying padding.