mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-14 10:46:01 +01:00
082bf00254
* hyprpm(feat): support specifying exact git revs * Mention git rev argument in help * Mention git rev arg is optional * Wrap text
19 lines
No EOL
371 B
C++
19 lines
No EOL
371 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
struct SPlugin {
|
|
std::string name;
|
|
std::string filename;
|
|
bool enabled = false;
|
|
bool failed = false;
|
|
};
|
|
|
|
struct SPluginRepository {
|
|
std::string url;
|
|
std::string rev;
|
|
std::string name;
|
|
std::vector<SPlugin> plugins;
|
|
std::string hash;
|
|
}; |