aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/wm/wm.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-09-28 13:40:30 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-09-28 13:40:30 -0700
commitb58f62d4ef7f6e2442bdf8170f8652ba1e08bd12 (patch)
tree41946b147e7943a92b0208d9684df1b2e5a05e2b /sys/cmd/wm/wm.h
parentbc53100f1ef063e09d77e8670e1796bc67017411 (diff)
Feat: added skeleton of wayland window manager
Diffstat (limited to 'sys/cmd/wm/wm.h')
-rw-r--r--sys/cmd/wm/wm.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/sys/cmd/wm/wm.h b/sys/cmd/wm/wm.h
new file mode 100644
index 0000000..356c408
--- /dev/null
+++ b/sys/cmd/wm/wm.h
@@ -0,0 +1,26 @@
+#pragma once
+
+#include <u.h>
+#include <libn.h>
+#include <wayland-server-core.h>
+
+#define WLR_USE_UNSTABLE
+#include <wlr/backend.h>
+#include <wlr/render/wlr_renderer.h>
+
+#include <wlr/types/wlr_cursor.h>
+#include <wlr/types/wlr_compositor.h>
+#include <wlr/types/wlr_data_device.h>
+#include <wlr/types/wlr_input_device.h>
+#include <wlr/types/wlr_keyboard.h>
+#include <wlr/types/wlr_matrix.h>
+#include <wlr/types/wlr_output.h>
+#include <wlr/types/wlr_output_layout.h>
+#include <wlr/types/wlr_pointer.h>
+#include <wlr/types/wlr_seat.h>
+#include <wlr/types/wlr_xcursor_manager.h>
+#include <wlr/types/wlr_xdg_shell.h>
+
+#include <wlr/util/log.h>
+
+#include <xkbcommon/xkbcommon.h>