diff --git a/src/plugins/PluginAPI.cpp b/src/plugins/PluginAPI.cpp index dc8c9707..8c816546 100644 --- a/src/plugins/PluginAPI.cpp +++ b/src/plugins/PluginAPI.cpp @@ -39,8 +39,10 @@ APICALL bool HyprlandAPI::unregisterCallback(HANDLE handle, HOOK_CALLBACK_FN* fn } APICALL std::string HyprlandAPI::invokeHyprctlCommand(const std::string& call, const std::string& args, const std::string& format) { - std::string COMMAND = format + "/" + call + " " + args; - return HyprCtl::makeDynamicCall(COMMAND); + if (args.empty()) + return HyprCtl::makeDynamicCall(format + "/" + call); + else + return HyprCtl::makeDynamicCall(format + "/" + call + " " + args); } APICALL bool HyprlandAPI::addLayout(HANDLE handle, const std::string& name, IHyprLayout* layout) { @@ -190,4 +192,4 @@ APICALL bool HyprlandAPI::removeDispatcher(HANDLE handle, const std::string& nam std::erase_if(PLUGIN->registeredDispatchers, [&](const auto& other) { return other == name; }); return true; -} \ No newline at end of file +}