From b11e2eaa3b4a87d004616d635e167bea29fa3dc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Zag=C3=B3rowski?= Date: Tue, 7 Mar 2023 11:42:33 +0100 Subject: [PATCH] Fix plugin argument-less hyprctl calls (#1723) Handle hyprctl command whitespace trimming might break --- src/plugins/PluginAPI.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 +}