Python – Tilling window manager written in Python

pythonsoftware-rectiling-wmwindow-manager

Is there any tiling manager like XMonad but written with Python?
I think Haskell was too hard for me. But I know python a little.

Best Answer

Unless you are intending on creating XMonad extensions you shouldn't need much Haskell.

Looking through my xmonad.hs almost everything in there is either an import statement (which looks exactly the same as in python), or copied from other configs. So if you start with the default config and fiddle with things you should be fine.

If you do need to extend it yourself you could also look for window managers with python bindings, e.g. i3 has this.

Related Question