mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 08:45:59 +01:00
15 lines
197 B
C++
15 lines
197 B
C++
|
#include "defines.hpp"
|
||
|
#include "debug/Log.hpp"
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
|
||
|
|
||
|
|
||
|
if (!getenv("XDG_RUNTIME_DIR"))
|
||
|
RIP("XDG_RUNTIME_DIR not set!");
|
||
|
|
||
|
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|