mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 16:05:58 +01:00
hyprctl: Add locked cmd to requests (#6042)
Co-authored-by: Leftas <info@leftas.dev>
This commit is contained in:
parent
fd35b35000
commit
064bdb06f1
1 changed files with 13 additions and 0 deletions
|
@ -1550,6 +1550,18 @@ std::string dispatchDismissNotify(eHyprCtlOutputFormat format, std::string reque
|
||||||
return "ok";
|
return "ok";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string getIsLocked(eHyprCtlOutputFormat format, std::string request) {
|
||||||
|
std::string lockedStr = g_pSessionLockManager->isSessionLocked() ? "true" : "false";
|
||||||
|
if (format == eHyprCtlOutputFormat::FORMAT_JSON)
|
||||||
|
lockedStr = std::format(R"#(
|
||||||
|
{{
|
||||||
|
"locked": {}
|
||||||
|
}}
|
||||||
|
)#",
|
||||||
|
lockedStr);
|
||||||
|
return lockedStr;
|
||||||
|
}
|
||||||
|
|
||||||
CHyprCtl::CHyprCtl() {
|
CHyprCtl::CHyprCtl() {
|
||||||
registerCommand(SHyprCtlCommand{"workspaces", true, workspacesRequest});
|
registerCommand(SHyprCtlCommand{"workspaces", true, workspacesRequest});
|
||||||
registerCommand(SHyprCtlCommand{"workspacerules", true, workspaceRulesRequest});
|
registerCommand(SHyprCtlCommand{"workspacerules", true, workspaceRulesRequest});
|
||||||
|
@ -1569,6 +1581,7 @@ CHyprCtl::CHyprCtl() {
|
||||||
registerCommand(SHyprCtlCommand{"rollinglog", true, rollinglogRequest});
|
registerCommand(SHyprCtlCommand{"rollinglog", true, rollinglogRequest});
|
||||||
registerCommand(SHyprCtlCommand{"layouts", true, layoutsRequest});
|
registerCommand(SHyprCtlCommand{"layouts", true, layoutsRequest});
|
||||||
registerCommand(SHyprCtlCommand{"configerrors", true, configErrorsRequest});
|
registerCommand(SHyprCtlCommand{"configerrors", true, configErrorsRequest});
|
||||||
|
registerCommand(SHyprCtlCommand{"locked", true, getIsLocked});
|
||||||
|
|
||||||
registerCommand(SHyprCtlCommand{"monitors", false, monitorsRequest});
|
registerCommand(SHyprCtlCommand{"monitors", false, monitorsRequest});
|
||||||
registerCommand(SHyprCtlCommand{"reload", false, reloadRequest});
|
registerCommand(SHyprCtlCommand{"reload", false, reloadRequest});
|
||||||
|
|
Loading…
Reference in a new issue