aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-04-08 14:15:13 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-04-08 15:09:12 -0400
commit0e3ddf255ef56b7fe2b868232b80d04ea961120b (patch)
treecd650869ccbeca085a022d7aceb97d5e581ff3bf /include/sway/config.h
parentMerge pull request #1778 from swaywm/fix-cursor (diff)
downloadsway-0e3ddf255ef56b7fe2b868232b80d04ea961120b.tar.gz
sway-0e3ddf255ef56b7fe2b868232b80d04ea961120b.tar.zst
sway-0e3ddf255ef56b7fe2b868232b80d04ea961120b.zip
Add input "identifier" map_to_output "identifier"
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 91f772b5..ed49fbbd 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -52,7 +52,7 @@ struct sway_mode {
52}; 52};
53 53
54/** 54/**
55 * libinput options for input devices 55 * options for input devices
56 */ 56 */
57struct input_config { 57struct input_config {
58 char *identifier; 58 char *identifier;
@@ -75,6 +75,8 @@ struct input_config {
75 char *xkb_rules; 75 char *xkb_rules;
76 char *xkb_variant; 76 char *xkb_variant;
77 77
78 char *mapped_output;
79
78 bool capturable; 80 bool capturable;
79 struct wlr_box region; 81 struct wlr_box region;
80}; 82};