aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-10-22 10:37:30 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2017-11-11 09:08:50 -0500
commit7c448b408126aef0561be0761871f968921d7db0 (patch)
tree055716519b975eca17b2e27254217acd1b801c20 /sway/commands.c
parentFind and link to wlroots (diff)
downloadsway-7c448b408126aef0561be0761871f968921d7db0.tar.gz
sway-7c448b408126aef0561be0761871f968921d7db0.tar.zst
sway-7c448b408126aef0561be0761871f968921d7db0.zip
Fire up the wlroots backend and run the event loop
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index c7dbf731..e1181893 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -120,6 +120,7 @@ void input_cmd_apply(struct input_config *input) {
120 // Try to find the input device and apply configuration now. If 120 // Try to find the input device and apply configuration now. If
121 // this is during startup then there will be no container and config 121 // this is during startup then there will be no container and config
122 // will be applied during normal "new input" event from wlc. 122 // will be applied during normal "new input" event from wlc.
123 /* TODO WLR
123 struct libinput_device *device = NULL; 124 struct libinput_device *device = NULL;
124 for (int i = 0; i < input_devices->length; ++i) { 125 for (int i = 0; i < input_devices->length; ++i) {
125 device = input_devices->items[i]; 126 device = input_devices->items[i];
@@ -134,6 +135,7 @@ void input_cmd_apply(struct input_config *input) {
134 break; 135 break;
135 } 136 }
136 } 137 }
138 */
137 } 139 }
138} 140}
139 141