mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-28 22:23:42 +01:00
a5b02791d4
Fixed workspace_next_name to use the first workspace name it can find in the config Minor fixes Changed command handler to perform var subs on all portions of a command Revert "Changed command handler to perform var subs on all portions of a command" This reverts commit fcfcffa1ea9819bcada6e6c85b40b21bf1b3a96e. Var sub fixes Minor fixes More minor fixes
52 lines
1 KiB
C
52 lines
1 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <wlc/wlc.h>
|
|
#include "layout.h"
|
|
#include "config.h"
|
|
#include "log.h"
|
|
#include "handlers.h"
|
|
|
|
|
|
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;
|
|
}
|
|
setenv("DISPLAY", ":1", 1);
|
|
|
|
if (!load_config()) {
|
|
sway_abort("Unable to load config");
|
|
}
|
|
|
|
wlc_run();
|
|
return 0;
|
|
}
|