Fix to ignore GSR Overlay in KWin workaround

This commit is contained in:
Andrew
2026-01-22 00:03:43 +03:00
committed by dec05eba
parent 00ceaa989d
commit 9c9df47d62

View File

@@ -51,6 +51,11 @@ namespace gsr {
size_t pos = line.find(prefix);
if (pos != std::string::npos) {
std::string title = line.substr(pos + prefix.length());
if (title == "gsr ui") {
continue; // ignore the overlay
}
active_kwin_window->title = title;
}
}