aboutsummaryrefslogtreecommitdiffstats
path: root/sway/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/server.c')
-rw-r--r--sway/server.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sway/server.c b/sway/server.c
index 712d8022..0fcd5800 100644
--- a/sway/server.c
+++ b/sway/server.c
@@ -10,13 +10,14 @@
10#include <wlr/types/wlr_compositor.h> 10#include <wlr/types/wlr_compositor.h>
11#include <wlr/types/wlr_data_control_v1.h> 11#include <wlr/types/wlr_data_control_v1.h>
12#include <wlr/types/wlr_export_dmabuf_v1.h> 12#include <wlr/types/wlr_export_dmabuf_v1.h>
13#include <wlr/types/wlr_gamma_control.h>
14#include <wlr/types/wlr_gamma_control_v1.h> 13#include <wlr/types/wlr_gamma_control_v1.h>
14#include <wlr/types/wlr_gamma_control.h>
15#include <wlr/types/wlr_gtk_primary_selection.h> 15#include <wlr/types/wlr_gtk_primary_selection.h>
16#include <wlr/types/wlr_idle.h> 16#include <wlr/types/wlr_idle.h>
17#include <wlr/types/wlr_layer_shell_v1.h> 17#include <wlr/types/wlr_layer_shell_v1.h>
18#include <wlr/types/wlr_relative_pointer_v1.h>
19#include <wlr/types/wlr_pointer_constraints_v1.h> 18#include <wlr/types/wlr_pointer_constraints_v1.h>
19#include <wlr/types/wlr_primary_selection_v1.h>
20#include <wlr/types/wlr_relative_pointer_v1.h>
20#include <wlr/types/wlr_screencopy_v1.h> 21#include <wlr/types/wlr_screencopy_v1.h>
21#include <wlr/types/wlr_server_decoration.h> 22#include <wlr/types/wlr_server_decoration.h>
22#include <wlr/types/wlr_xcursor_manager.h> 23#include <wlr/types/wlr_xcursor_manager.h>
@@ -122,6 +123,7 @@ bool server_init(struct sway_server *server) {
122 wlr_export_dmabuf_manager_v1_create(server->wl_display); 123 wlr_export_dmabuf_manager_v1_create(server->wl_display);
123 wlr_screencopy_manager_v1_create(server->wl_display); 124 wlr_screencopy_manager_v1_create(server->wl_display);
124 wlr_data_control_manager_v1_create(server->wl_display); 125 wlr_data_control_manager_v1_create(server->wl_display);
126 wlr_primary_selection_v1_device_manager_create(server->wl_display);
125 127
126 server->socket = wl_display_add_socket_auto(server->wl_display); 128 server->socket = wl_display_add_socket_auto(server->wl_display);
127 if (!server->socket) { 129 if (!server->socket) {