I don't think you can do this via the configuration. I think it's something that's hard coded in the layouts themselves.
For BSP, look at this line: https://github.com/qtile/qtile/blob/master/libqtile/layout/bsp.py#L211 If you change that to "border = self.border_width" you'll get a border drawn on all windows, including the first. For Max, the lack of border is hard coded here: https://github.com/qtile/qtile/blob/master/libqtile/layout/max.py#L53 The zero is the width. If you really want a border on Max then you'd need to edit the code or make a copy of Max, rename it and edit it yourself. On Saturday, 9 January 2021 at 18:09:56 UTC Cullen Ross wrote: > > Hey everyone, > > I've noticed that for the bsp layout if there is only window window > opened, the borders aren't drawn. Is it possible to force the borders to be > drawn for the sole window? It'd be nice to be able to do this with the max > layout as well. I wasn't able to find anything in the docs to address this. > > Thanks! > -- You received this message because you are subscribed to the Google Groups "qtile-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/qtile-dev/83540a79-c109-4efd-b88a-17165f0ad0c4n%40googlegroups.com.
