aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Aidan Dang <dang@aidan.gg>2022-03-16 22:22:41 +0000
committerLibravatar Simon Ser <contact@emersion.fr>2022-12-05 14:09:29 +0100
commitc32a507303e38c7bf0b8054108bec45ff67e92c2 (patch)
tree9590aa045b466f57b023d625c8a281c94fd8039c /sway/commands.c
parentseat: Avoid sending redundant keymaps on reload (diff)
downloadsway-c32a507303e38c7bf0b8054108bec45ff67e92c2.tar.gz
sway-c32a507303e38c7bf0b8054108bec45ff67e92c2.tar.zst
sway-c32a507303e38c7bf0b8054108bec45ff67e92c2.zip
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/commands.c')
-rw-r--r--sway/commands.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 2160a970..041da7ea 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -82,6 +82,7 @@ static const struct cmd_handler handlers[] = {
82 { "no_focus", cmd_no_focus }, 82 { "no_focus", cmd_no_focus },
83 { "output", cmd_output }, 83 { "output", cmd_output },
84 { "popup_during_fullscreen", cmd_popup_during_fullscreen }, 84 { "popup_during_fullscreen", cmd_popup_during_fullscreen },
85 { "primary_selection", cmd_primary_selection },
85 { "seat", cmd_seat }, 86 { "seat", cmd_seat },
86 { "set", cmd_set }, 87 { "set", cmd_set },
87 { "show_marks", cmd_show_marks }, 88 { "show_marks", cmd_show_marks },