mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-04 06:01:56 -07:00
overwrite wsbind rules on existing
This commit is contained in:
@@ -939,6 +939,13 @@ void CConfigManager::handleBindWS(const std::string& command, const std::string&
|
||||
const auto WS = value.substr(0, value.find_first_of(','));
|
||||
const auto MON = value.substr(value.find_first_of(',') + 1);
|
||||
|
||||
const auto FOUND = std::find_if(boundWorkspaces.begin(), boundWorkspaces.end(), [&](const auto& other) { return other.first == WS; });
|
||||
|
||||
if (FOUND != boundWorkspaces.end()) {
|
||||
FOUND->second = MON;
|
||||
return;
|
||||
}
|
||||
|
||||
boundWorkspaces.push_back({WS, MON});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user