config: allow mon description for monitor value (#216)

* config: allow mon description for `monitor` value

* rename field
This commit is contained in:
bvr-yr 2024-03-24 00:06:54 +03:00 committed by GitHub
parent 230f8aadb5
commit 2448774de3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 7 deletions

View file

@ -46,8 +46,9 @@ static void handleName(void* data, wl_output* output, const char* name) {
} }
static void handleDescription(void* data, wl_output* output, const char* description) { static void handleDescription(void* data, wl_output* output, const char* description) {
const auto POUTPUT = (COutput*)data; const auto POUTPUT = (COutput*)data;
Debug::log(LOG, "output {} description {}", POUTPUT->name, description ? description : ""); POUTPUT->stringDesc = description ? std::string{description} : "";
Debug::log(LOG, "output {} description {}", POUTPUT->name, POUTPUT->stringDesc);
} }
static const wl_output_listener outputListener = { static const wl_output_listener outputListener = {
@ -61,4 +62,4 @@ static const wl_output_listener outputListener = {
COutput::COutput(wl_output* output, uint32_t name) : name(name), output(output) { COutput::COutput(wl_output* output, uint32_t name) : name(name), output(output) {
wl_output_add_listener(output, &outputListener, this); wl_output_add_listener(output, &outputListener, this);
} }

View file

@ -16,10 +16,11 @@ class COutput {
int scale = 1; int scale = 1;
std::string stringName = ""; std::string stringName = "";
std::string stringPort = ""; std::string stringPort = "";
std::string stringDesc = "";
std::unique_ptr<CSessionLockSurface> sessionLockSurface; std::unique_ptr<CSessionLockSurface> sessionLockSurface;
wl_output* output = nullptr; wl_output* output = nullptr;
private: private:
}; };

View file

@ -42,7 +42,8 @@ CAsyncResourceGatherer::CAsyncResourceGatherer() {
} }
for (auto& mon : mons) { for (auto& mon : mons) {
const auto MON = std::find_if(g_pHyprlock->m_vOutputs.begin(), g_pHyprlock->m_vOutputs.end(), [mon](const auto& other) { return other->stringPort == mon; }); const auto MON = std::find_if(g_pHyprlock->m_vOutputs.begin(), g_pHyprlock->m_vOutputs.end(),
[mon](const auto& other) { return other->stringPort == mon || other->stringDesc.starts_with(mon); });
if (MON == g_pHyprlock->m_vOutputs.end()) if (MON == g_pHyprlock->m_vOutputs.end())
continue; continue;
@ -65,7 +66,7 @@ void CAsyncResourceGatherer::recheckDMAFramesFor(COutput* output) {
if (std::string{std::any_cast<Hyprlang::STRING>(c.values.at("path"))} != "screenshot") if (std::string{std::any_cast<Hyprlang::STRING>(c.values.at("path"))} != "screenshot")
continue; continue;
if (c.monitor.empty() || c.monitor == output->stringPort) { if (c.monitor.empty() || c.monitor == output->stringPort || output->stringDesc.starts_with(c.monitor)) {
shouldMake = true; shouldMake = true;
break; break;
} }

View file

@ -306,7 +306,7 @@ std::vector<std::unique_ptr<IWidget>>* CRenderer::getOrCreateWidgetsFor(const CS
const auto CWIDGETS = g_pConfigManager->getWidgetConfigs(); const auto CWIDGETS = g_pConfigManager->getWidgetConfigs();
for (auto& c : CWIDGETS) { for (auto& c : CWIDGETS) {
if (!c.monitor.empty() && c.monitor != surf->output->stringPort) if (!c.monitor.empty() && c.monitor != surf->output->stringPort && !surf->output->stringDesc.starts_with(c.monitor))
continue; continue;
// by type // by type