Change monitor active to json bool

This commit is contained in:
Yavor Kolev 2022-08-04 16:25:56 -07:00 committed by GitHub
parent 3947fe9e9f
commit 9f11765707
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ R"#({
"reserved": [%i, %i, %i, %i],
"scale": %.2f,
"transform": %i,
"active": "%s"
"active": %s
},)#",
m->ID,
escapeJSONStrings(m->szName).c_str(),
@ -46,7 +46,7 @@ R"#({
(int)m->vecReservedTopLeft.x, (int)m->vecReservedTopLeft.y, (int)m->vecReservedBottomRight.x, (int)m->vecReservedBottomRight.y,
m->scale,
(int)m->transform,
(m.get() == g_pCompositor->m_pLastMonitor ? "yes" : "no")
(m.get() == g_pCompositor->m_pLastMonitor ? "true" : "false")
);
}
@ -667,4 +667,4 @@ void HyprCtl::startHyprCtlSocket() {
close(SOCKET);
}).detach();
}
}