-
-
Notifications
You must be signed in to change notification settings - Fork 772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix wlr/workspaces to support labwc #3967
Comments
#include <stdio.h> struct wl_display *display = NULL; static const struct ext_workspace_manager_v1_listener workspace_manager_listener; struct workspace_data { static void global_registry_handler(void *data, struct wl_registry *registry, uint32_t id,
} static void global_registry_remover(void *data, struct wl_registry *registry, uint32_t id) static const struct wl_registry_listener registry_listener = { static void workspace_id(void *data, struct ext_workspace_handle_v1 *workspace, const char *id) { static void workspace_name(void *data, struct ext_workspace_handle_v1 *workspace, const char *new_name) {
} static void workspace_coordinates(void *data, struct ext_workspace_handle_v1 *workspace, struct wl_array *coordinates) { static void workspace_state(void *data, struct ext_workspace_handle_v1 *workspace, uint32_t state) {
} static void workspace_capabilities(void *data, struct ext_workspace_handle_v1 *workspace, uint32_t capabilities) { static void workspace_removed(void *data, struct ext_workspace_handle_v1 *workspace) { static void workspace_group_event(void *data, struct ext_workspace_manager_v1 *manager, struct ext_workspace_group_handle_v1 *group_handle) { static void workspace_event(void *data, struct ext_workspace_manager_v1 *manager, struct ext_workspace_handle_v1 *workspace) { } static void done_event(void *data, struct ext_workspace_manager_v1 *manager) { static void finished_event(void *data, struct ext_workspace_manager_v1 *manager) { static const struct ext_workspace_handle_v1_listener workspace_handle_listener = { static const struct ext_workspace_manager_v1_listener workspace_manager_listener = { int main(int argc, char **argv) {
} |
now that labwc has merged support for wayland protocol ext_workspaces_manager_v1, some fixes probably need to be made to this old codebase to support labwc or other wlr based compositors.
The text was updated successfully, but these errors were encountered: