mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
fix(Battery): replace spaces w/ underscores
This commit is contained in:
parent
c885be369e
commit
d40cc6f23a
@ -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()) {
|
||||
|
Loading…
Reference in New Issue
Block a user