Merge pull request #1087 from Synthetica9/multiple-rewrites

rewriteTitle: allow multiple sequential rewrites
This commit is contained in:
Alex 2021-04-27 00:00:53 +02:00 committed by GitHub
commit 06e699c862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -132,13 +132,14 @@ void Window::getTree() {
}
}
std::string Window::rewriteTitle(const std::string& title)
{
std::string Window::rewriteTitle(const std::string& title) {
const auto& rules = config_["rewrite"];
if (!rules.isObject()) {
return title;
}
std::string res = title;
for (auto it = rules.begin(); it != rules.end(); ++it) {
if (it.key().isString() && it->isString()) {
try {
@ -146,7 +147,7 @@ std::string Window::rewriteTitle(const std::string& title)
// in this case, log error and try the next rule.
const std::regex rule{it.key().asString()};
if (std::regex_match(title, rule)) {
return std::regex_replace(title, rule, it->asString());
res = std::regex_replace(res, rule, it->asString());
}
} catch (const std::regex_error& e) {
spdlog::error("Invalid rule {}: {}", it.key().asString(), e.what());
@ -154,7 +155,7 @@ std::string Window::rewriteTitle(const std::string& title)
}
}
return title;
return res;
}
} // namespace waybar::modules::sway