hyprctl: fix plugin list on no plugins (#5357)

This commit is contained in:
Micovec 2024-03-31 22:45:22 +02:00 committed by GitHub
parent 9e8f051896
commit 8cb38d41d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1451,6 +1451,9 @@ std::string dispatchPlugin(eHyprCtlOutputFormat format, std::string request) {
} else if (OPERATION == "list") {
const auto PLUGINS = g_pPluginSystem->getAllPlugins();
if (PLUGINS.size() == 0)
return "no plugins loaded";
std::string list = "";
for (auto& p : PLUGINS) {
list += std::format("\nPlugin {} by {}:\n\tHandle: {:x}\n\tVersion: {}\n\tDescription: {}\n", p->name, p->author, (uintptr_t)p->m_pHandle, p->version, p->description);