hyprpm: fix hyrpm sometimes returning 0 despite errors occuring (#8761)

* hyprpm: fix hyrpm sometimes returning 0 despite errors occuring

* there u go
This commit is contained in:
Aaron Blasko 2024-12-19 01:33:57 +01:00 committed by GitHub
parent 23e7d8f6a7
commit 7c43eed2c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,7 +73,7 @@ int main(int argc, char** argv, char** envp) {
if (command.empty()) {
std::println(stderr, "{}", HELP);
return 0;
return 1;
}
g_pPluginManager = std::make_unique<CPluginManager>();
@ -165,6 +165,7 @@ int main(int argc, char** argv, char** envp) {
break;
default: break;
}
return 1;
} else if (notify && !notifyFail) {
g_pPluginManager->notify(ICON_OK, 0, 4000, "[hyprpm] Loaded plugins");
}