From c16f1497187676c11a8769cdf49ca37c677d1881 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Wed, 6 Dec 2023 19:55:24 +0000 Subject: [PATCH] move load to reload --- hyprpm/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hyprpm/src/main.cpp b/hyprpm/src/main.cpp index c50bc57f..84d154c4 100644 --- a/hyprpm/src/main.cpp +++ b/hyprpm/src/main.cpp @@ -15,7 +15,7 @@ const std::string HELP = R"#(┏ hyprpm, a Hyprland Plugin Manager ┣ enable [name] → Enable a plugin ┣ disable [name] → Disable a plugin ┣ update → Check and update all plugins if needed -┣ load → Load hyprpm state. Ensure all enabled plugins are loaded. +┣ reload → Reload hyprpm state. Ensure all enabled plugins are loaded. ┣ list → List all installed plugins ┃ ┣ Flags: @@ -114,7 +114,7 @@ int main(int argc, char** argv, char** envp) { auto ret = g_pPluginManager->ensurePluginsLoadState(); if (ret != LOADSTATE_OK) return 1; - } else if (command[0] == "load") { + } else if (command[0] == "reload") { auto ret = g_pPluginManager->ensurePluginsLoadState(); if (ret != LOADSTATE_OK && notify) {