mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
moving stuff around
This commit is contained in:
parent
fe9037ace3
commit
0f387483fd
3 changed files with 38 additions and 53 deletions
25
sway/main.c
25
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue