diff options
author | Taiyu <[email protected]> | 2015-08-12 20:59:43 -0700 |
---|---|---|
committer | Taiyu <[email protected]> | 2015-08-12 20:59:43 -0700 |
commit | 0f387483fd6b4ce40514578ab008bfabc84b015d (patch) | |
tree | cb47c80760d565ab69503dec86129045a7c0011b /sway/main.c | |
parent | fe9037ace331d39fde00574a161b88a7f0ee0d44 (diff) |
moving stuff around
Diffstat (limited to 'sway/main.c')
-rw-r--r-- | sway/main.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/sway/main.c b/sway/main.c index a7814364..7661551d 100644 --- a/sway/main.c +++ b/sway/main.c @@ -12,31 +12,6 @@ int main(int argc, char **argv) { init_log(L_DEBUG); // TODO: Control this with command line arg init_layout(); - static struct wlc_interface interface = { - .output = { - .created = handle_output_created, - .destroyed = handle_output_destroyed, - .resolution = handle_output_resolution_change, - .focus = handle_output_focused - }, - .view = { - .created = handle_view_created, - .destroyed = handle_view_destroyed, - .focus = handle_view_focus, - .request = { - .geometry = handle_view_geometry_request - } - }, - .keyboard = { - .key = handle_key - }, - .pointer = { - .motion = handle_pointer_motion, - .button = handle_pointer_button - } - - }; - setenv("WLC_DIM", "0", 0); if (!wlc_init(&interface, argc, argv)) { return 1; |