Replies: 1 comment
-
Hello, Some times ago, the default client.connect_signal("manage", function (c)
-- Set the windows at the slave,
-- i.e. put it at the end of others instead of setting it master.
-- if not awesome.startup then awful.client.setslave(c) end
if awesome.startup
and not c.size_hints.user_position
and not c.size_hints.program_position then
-- Prevent clients from being unreachable after screen count changes.
awful.placement.no_offscreen(c)
end
end) It was removed by 067bcac. The interesting part for your use case is the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm trying to replicate this behaviour in awesome:
https://dwm.suckless.org/patches/tagintostack/
,,
tagintostack
new clients attach into the stack area when you toggle a new tag into view. This means your master area will remain unchanged when toggling views."Any advice how could I do this?
Beta Was this translation helpful? Give feedback.
All reactions