core: fix missing headers (#18)

This commit is contained in:
LOSEARDES77 2024-02-22 11:33:19 +01:00 committed by GitHub
parent a180de7bc7
commit b85722e41a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,8 @@
#include <sys/mman.h>
#include <fcntl.h>
#include <unistd.h>
#include <thread>
#include <mutex>
CHypridle::CHypridle() {
m_sWaylandState.display = wl_display_connect(nullptr);

View File

@ -4,6 +4,7 @@
#include <vector>
#include <wayland-client.h>
#include <sdbus-c++/sdbus-c++.h>
#include <condition_variable>
#include "ext-idle-notify-v1-protocol.h"