mirror of
https://github.com/swaywm/sway.git
synced 2025-11-17 06:59:48 -05:00
Initialize outputs from backend and add to tree
This commit is contained in:
parent
0ba6554c4f
commit
7eafcc75f6
9 changed files with 106 additions and 47 deletions
21
sway/desktop/output.c
Normal file
21
sway/desktop/output.c
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#include <wayland-server.h>
|
||||
#include <wlr/types/wlr_output.h>
|
||||
#include "sway/server.h"
|
||||
#include "sway/container.h"
|
||||
#include "sway/workspace.h"
|
||||
#include "log.h"
|
||||
|
||||
void output_add_notify(struct wl_listener *listener, void *data) {
|
||||
struct sway_server *server = wl_container_of(listener, server, output_add);
|
||||
struct wlr_output *wlr_output = data;
|
||||
sway_log(L_DEBUG, "New output %p: %s", wlr_output, wlr_output->name);
|
||||
swayc_t *op = new_output(wlr_output);
|
||||
if (!sway_assert(op, "Failed to allocate output")) {
|
||||
return;
|
||||
}
|
||||
// Switch to workspace if we need to
|
||||
if (swayc_active_workspace() == NULL) {
|
||||
swayc_t *ws = op->children->items[0];
|
||||
workspace_switch(ws);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue