This was perfect! I wouldn't have thought, that there would be such an easy
solution. Thank you!
Andreas
Benoît Zugmeyer <[email protected]> schrieb am 20:51 Mittwoch, 7.Januar
2015:
I did it for a single type of window, like that:
https://github.com/BenoitZugmeyer/dotfiles/blob/master/.config/awesome/rc.lua#L607-L610
All my terminals are opening as the first slave window.
You may be able to do this for all clients by moving the line
awful.client.swap.byidx(awful.tag.getnmaster(), c)
in the callback
client.connect_signal("manage", function (c, startup)
...
end)
--
Benoît Zugmeyer
On Wed, Jan 7, 2015 at 8:04 PM, Zum Testen <[email protected]> wrote:
My favorite layout is awful.layout.suit.tile.left. But I would like to slightly
change the default behavior:
I have two windows on the left (A, B) and one window on the right side
(C):---------
| A | ||---| C |
| B | |---------
When I add a new window (D), it appears on the right side. Window C goes to the
upper left:
---------| C | ||---| || A | D ||---| || B | |---------
I would like to change this. D should appear on the upper left (with focus),
and C should remain on the right:
---------| D | ||---| || A | C ||---| || B | |---------
Is it somehow possible to achieve this?