hyprpicker/src/main.cpp

10 lines
191 B
C++
Raw Normal View History

2022-09-02 18:06:00 +02:00
#include <iostream>
#include "hyprpicker.hpp"
int main(int argc, char** argv, char** envp) {
g_pHyprpicker = std::make_unique<CHyprpicker>();
g_pHyprpicker->init();
return 0;
}