hyprpm: handle failed compilations gracefully

This commit is contained in:
vaxerski
2024-01-07 18:15:51 +01:00
parent 7904188de9
commit 9f2bde925b
4 changed files with 24 additions and 8 deletions

View File

@@ -6,7 +6,8 @@
struct SPlugin {
std::string name;
std::string filename;
bool enabled;
bool enabled = false;
bool failed = false;
};
struct SPluginRepository {