mirror of
https://github.com/hyprwm/hypridle.git
synced 2026-05-21 20:38:10 +02:00
14 lines
294 B
C++
14 lines
294 B
C++
|
|
|
||
|
|
#include "config/ConfigManager.hpp"
|
||
|
|
#include "core/Hypridle.hpp"
|
||
|
|
|
||
|
|
int main(int argc, char** argv, char** envp) {
|
||
|
|
|
||
|
|
g_pConfigManager = std::make_unique<CConfigManager>();
|
||
|
|
g_pConfigManager->init();
|
||
|
|
|
||
|
|
g_pHypridle = std::make_unique<CHypridle>();
|
||
|
|
g_pHypridle->run();
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|