readme
This commit is contained in:
parent
957699d0b5
commit
6a6144db65
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue