This commit is contained in:
anakha 2021-07-06 17:01:00 -04:00
parent 957699d0b5
commit 6a6144db65
2 changed files with 5 additions and 1 deletions

View File

@ -37,6 +37,7 @@ We now have tabs for tiled clients :)
- [ ] Better keybindings (possibly emacs style)
- [X] Clickable tabs
- [ ] Update tabs on tag change
- [ ] Add binding for relocating the entire region
- [ ] Deck spread (send focused client to a direction without moving focus)
- [ ] Visual teleport (overlay with region numbers to choose from)

View File

@ -203,7 +203,8 @@ local function get_client_info(c)
active_region = active_region,
active_region_geom = active_region_geom,
regions = regions,
outofboundary = outofboundary
outofboundary = outofboundary,
tags = c:tags()
}
end
@ -989,6 +990,8 @@ local function riseup_signal(c)
client.focus = c; c:raise()
-- c:emit_signal("request::activate", "mouse_enter",{raise = true})
end
--------------------------------------------------------------- signals -- ;
client.connect_signal("riseup", riseup_signal)