summaryrefslogtreecommitdiff
path: root/sway/handlers.c
diff options
context:
space:
mode:
authorLuminarys <[email protected]>2015-08-23 12:22:33 -0500
committerLuminarys <[email protected]>2015-08-23 12:23:01 -0500
commit98fad060e28c81c8340afbb473615f7889a6097a (patch)
tree0960997bc9cd401fce0347e6e7cbbb6a14fe8450 /sway/handlers.c
parente2322414666488945ffcbcab06f9cca95ff731d3 (diff)
Added in glitchy disabling
Diffstat (limited to 'sway/handlers.c')
-rw-r--r--sway/handlers.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index e4018811..9fca6387 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -86,11 +86,22 @@ swayc_t *container_under_pointer(void) {
static bool handle_output_created(wlc_handle output) {
swayc_t *op = new_output(output);
+ if (!op) {
+ return false;
+ }
+
+ wlc_output_focus(output);
// Switch to workspace if we need to
if (swayc_active_workspace() == NULL) {
+ sway_log(L_INFO, "Focus switch");
swayc_t *ws = op->children->items[0];
workspace_switch(ws);
}
+ /*
+ if (wlc_output_get_sleep(wlc_get_focused_output())) {
+ wlc_output_focus(output);
+ }
+ */
return true;
}