aboutsummaryrefslogtreecommitdiff
path: root/sway/server.c
diff options
context:
space:
mode:
authorAidan Dang <dang@aidan.gg>2022-03-16 22:22:41 +0000
committerSimon Ser <contact@emersion.fr>2022-12-05 14:09:29 +0100
commitc32a507303e38c7bf0b8054108bec45ff67e92c2 (patch)
tree9590aa045b466f57b023d625c8a281c94fd8039c /sway/server.c
parente1b268af98edeb09e570e8855ef64f0719cbafe2 (diff)
Add `primary_selection` config option
See: https://github.com/swaywm/sway/issues/4511 Adds a bool config option `primary_selection`, which explicitly enables/disables the primary selection clipboard. Defaults to enabled. This is implemented as a launch-only option which enables or disables the creation of the `zwp_primary_selection_device_manager_v1` global. Co-authored-by: Tilde Rose <t1lde@protonmail.com>
Diffstat (limited to 'sway/server.c')
-rw-r--r--sway/server.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sway/server.c b/sway/server.c
index 2db069a2..43ff8cfb 100644
--- a/sway/server.c
+++ b/sway/server.c
@@ -210,7 +210,6 @@ bool server_init(struct sway_server *server) {
wlr_export_dmabuf_manager_v1_create(server->wl_display);
wlr_screencopy_manager_v1_create(server->wl_display);
wlr_data_control_manager_v1_create(server->wl_display);
- wlr_primary_selection_v1_device_manager_create(server->wl_display);
wlr_viewporter_create(server->wl_display);
wlr_single_pixel_buffer_manager_v1_create(server->wl_display);
server->content_type_manager_v1 =
@@ -308,6 +307,10 @@ bool server_start(struct sway_server *server) {
}
#endif
+ if (config->primary_selection) {
+ wlr_primary_selection_v1_device_manager_create(server->wl_display);
+ }
+
sway_log(SWAY_INFO, "Starting backend on wayland display '%s'",
server->socket);
if (!wlr_backend_start(server->backend)) {