mirror of
https://github.com/swaywm/sway.git
synced 2025-11-09 13:29:49 -05:00
Added Awesome/Monad type "auto" layouts
This commit is contained in:
parent
6a1df17fb7
commit
97f7d47413
7 changed files with 372 additions and 113 deletions
|
|
@ -38,6 +38,10 @@ static void container_log(const swayc_t *c, int depth) {
|
|||
c->layout == L_STACKED ? "Stack":
|
||||
c->layout == L_TABBED ? "Tab":
|
||||
c->layout == L_FLOATING ? "Float":
|
||||
c->layout == L_AUTO_LEFT ? "A_lft":
|
||||
c->layout == L_AUTO_RIGHT ? "A_rgt":
|
||||
c->layout == L_AUTO_TOP ? "A_top":
|
||||
c->layout == L_AUTO_BOTTOM ? "A_bot":
|
||||
"Unknown");
|
||||
fprintf(stderr, "w:%4.f|h:%4.f|", c->width, c->height);
|
||||
fprintf(stderr, "x:%4.f|y:%4.f|", c->x, c->y);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue