1

I'm looking for an XMonad layout which allows to add and remove columns.

As an example:

+-----+-----+
|     |  2  |
|  1  +-----+
|     |  3  |
+-----+-----+

By adding a new column, the windows would arrange as follows:

+---+---+---+
|   |   |   |
| 1 | 2 | 3 |
|   |   |   |
+---+---+---+

Does such a layout exist?

1 Answer 1

1

Yes the second example sounds like it could be accomplished with: https://hackage.haskell.org/package/xmonad-contrib-0.13/docs/XMonad-Layout-MultiColumns.html

2
  • Thanks! Do you know whether it is possible to dynamically add new columns using this extension (without re-configuring and restarting XMonad)? Commented Dec 12, 2017 at 8:04
  • Possibly the layout supports this - you'd have to look at the source code. Alternatively you could create multiple 'layout's with incremental columns set - but it would be a bit of a hacky approach. Commented Dec 12, 2017 at 11:25

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.