mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-09-17 16:58:22 +00:00
LS: support address: in layerrules
This commit is contained in:
@@ -1650,10 +1650,15 @@ std::vector<SLayerRule> CConfigManager::getMatchingRules(SLayerSurface* pLS) {
|
|||||||
std::vector<SLayerRule> returns;
|
std::vector<SLayerRule> returns;
|
||||||
|
|
||||||
for (auto& lr : m_dLayerRules) {
|
for (auto& lr : m_dLayerRules) {
|
||||||
|
if (lr.targetNamespace.find("address:0x") == 0) {
|
||||||
|
if (getFormat("address:0x%x", pLS) != lr.targetNamespace)
|
||||||
|
continue;
|
||||||
|
} else {
|
||||||
std::regex NSCHECK(lr.targetNamespace);
|
std::regex NSCHECK(lr.targetNamespace);
|
||||||
|
|
||||||
if (!pLS->layerSurface->_namespace || !std::regex_search(pLS->layerSurface->_namespace, NSCHECK))
|
if (!pLS->layerSurface->_namespace || !std::regex_search(pLS->layerSurface->_namespace, NSCHECK))
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// hit
|
// hit
|
||||||
returns.push_back(lr);
|
returns.push_back(lr);
|
||||||
|
Reference in New Issue
Block a user