aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
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 /include/sway/config.h
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 'include/sway/config.h')
-rw-r--r--include/sway/config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 190ab13b..ce2b8502 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -530,6 +530,7 @@ struct sway_config {
530 bool auto_back_and_forth; 530 bool auto_back_and_forth;
531 bool show_marks; 531 bool show_marks;
532 enum alignment title_align; 532 enum alignment title_align;
533 bool primary_selection;
533 534
534 bool tiling_drag; 535 bool tiling_drag;
535 int tiling_drag_threshold; 536 int tiling_drag_threshold;
@@ -719,7 +720,7 @@ void free_workspace_config(struct workspace_config *wsc);
719/** 720/**
720 * Updates the value of config->font_height based on the metrics for title's 721 * Updates the value of config->font_height based on the metrics for title's
721 * font as reported by pango. 722 * font as reported by pango.
722 * 723 *
723 * If the height has changed, all containers will be rearranged to take on the 724 * If the height has changed, all containers will be rearranged to take on the
724 * new size. 725 * new size.
725 */ 726 */