keybinds: add toggle to dpms

This commit is contained in:
vaxerski 2023-07-30 16:46:33 +02:00
parent bf0d8ab4a3
commit 08651736ad

View File

@ -1837,6 +1837,9 @@ void CKeybindManager::dpms(std::string arg) {
bool enable = arg.find("on") == 0;
std::string port = "";
if (arg.find("toggle") == 0)
enable = !std::any_of(g_pCompositor->m_vMonitors.begin(), g_pCompositor->m_vMonitors.end(), [&](const auto& other) { return !other->dpmsStatus; }); // enable if any is off
if (arg.find_first_of(' ') != std::string::npos)
port = arg.substr(arg.find_first_of(' ') + 1);