fix(Battery): replace spaces w/ underscores

This commit is contained in:
Alex 2019-12-30 13:55:49 +01:00
parent c885be369e
commit d40cc6f23a
1 changed files with 5 additions and 0 deletions

View File

@ -163,7 +163,12 @@ auto waybar::modules::Battery::update() -> void {
}
label_.set_tooltip_text(tooltip_text);
}
// Transform to lowercase
std::transform(status.begin(), status.end(), status.begin(), ::tolower);
// Replace space with underscore
std::transform(status.begin(), status.end(), status.begin(), [](char ch) {
return ch == ' ' ? '_' : ch;
});
auto format = format_;
auto state = getState(capacity, true);
if (!old_status_.empty()) {