Merge pull request #2787 from scgtrp/master

hyprland/workspaces: allow using the original window class/title
This commit is contained in:
Alexis Rouillard 2023-12-31 12:40:06 +01:00 committed by GitHub
commit 3e55d0d7f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,7 @@ Addressed by *hyprland/workspaces*
*window-rewrite*: ++
typeof: object ++
Regex rules to map window class to an icon or preferred method of representation for a workspace's window.
Keys are the rules, while the values are the methods of representation.
Keys are the rules, while the values are the methods of representation. Values may use the placeholders {class} and {title} to use the window's original class and/or title respectively.
Rules may specify `class<...>`, `title<...>`, or both in order to fine-tune the matching.
*window-rewrite-default*:

View File

@ -891,7 +891,9 @@ std::string Workspaces::getRewrite(std::string window_class, std::string window_
} else {
windowReprKey = fmt::format("class<{}>", window_class);
}
return m_windowRewriteRules.get(windowReprKey);
auto const rewriteRule = m_windowRewriteRules.get(windowReprKey);
return fmt::format(fmt::runtime(rewriteRule), fmt::arg("class", window_class),
fmt::arg("title", window_title));
}
WindowCreationPayload::WindowCreationPayload(std::string workspace_name,