mirror of
https://github.com/hyprwm/Hyprland
synced 2025-01-13 20:49:49 +01:00
3656045ad8
* hyprpm: install headers locally * oopsie
22 lines
No EOL
911 B
C++
22 lines
No EOL
911 B
C++
#pragma once
|
|
#include <string>
|
|
#include <vector>
|
|
#include "Plugin.hpp"
|
|
|
|
struct SGlobalState {
|
|
std::string headersHashCompiled = "";
|
|
bool dontWarnInstall = false;
|
|
};
|
|
|
|
namespace DataState {
|
|
std::string getDataStatePath();
|
|
std::string getHeadersPath();
|
|
void ensureStateStoreExists();
|
|
void addNewPluginRepo(const SPluginRepository& repo);
|
|
void removePluginRepo(const std::string& urlOrName);
|
|
bool pluginRepoExists(const std::string& urlOrName);
|
|
void updateGlobalState(const SGlobalState& state);
|
|
SGlobalState getGlobalState();
|
|
bool setPluginEnabled(const std::string& name, bool enabled);
|
|
std::vector<SPluginRepository> getAllRepositories();
|
|
}; |