mirror of
https://github.com/hyprwm/hypridle.git
synced 2025-12-20 17:10:02 +01:00
41 lines
1 KiB
C++
41 lines
1 KiB
C++
#pragma once
|
|
|
|
#include "../helpers/Log.hpp"
|
|
|
|
#include <hyprlang.hpp>
|
|
|
|
#include <set>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
class CConfigManager {
|
|
public:
|
|
CConfigManager(std::string configPath);
|
|
void init();
|
|
|
|
struct STimeoutRule {
|
|
uint64_t timeout = 0;
|
|
std::string onTimeout = "";
|
|
std::string onResume = "";
|
|
bool ignoreInhibit = false;
|
|
};
|
|
|
|
std::vector<STimeoutRule> getRules();
|
|
std::optional<std::string> handleSource(const std::string&, const std::string&);
|
|
std::string configCurrentPath, configHeadPath;
|
|
std::set<std::string> alreadyIncludedSourceFiles;
|
|
|
|
template <typename T>
|
|
Hyprlang::CSimpleConfigValue<T> getValue(const std::string& name) {
|
|
return Hyprlang::CSimpleConfigValue<T>(&m_config, name.c_str());
|
|
}
|
|
|
|
private:
|
|
Hyprlang::CConfig m_config;
|
|
|
|
std::vector<STimeoutRule> m_vRules;
|
|
|
|
Hyprlang::CParseResult postParse();
|
|
};
|
|
|
|
inline std::unique_ptr<CConfigManager> g_pConfigManager;
|