diff options
author | Drew DeVault <[email protected]> | 2017-10-22 10:37:30 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2017-11-11 09:08:50 -0500 |
commit | 7c448b408126aef0561be0761871f968921d7db0 (patch) | |
tree | 055716519b975eca17b2e27254217acd1b801c20 /sway/commands.c | |
parent | 6edc32848f67fe3ea370e12b64019cef6c137840 (diff) |
Fire up the wlroots backend and run the event loop
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 2 |
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) { // Try to find the input device and apply configuration now. If // this is during startup then there will be no container and config // will be applied during normal "new input" event from wlc. + /* TODO WLR struct libinput_device *device = NULL; for (int i = 0; i < input_devices->length; ++i) { device = input_devices->items[i]; @@ -134,6 +135,7 @@ void input_cmd_apply(struct input_config *input) { break; } } + */ } } |