feel free to list other window managers you’ve used.

I have been happy with bspwm, but considering trying something else. I love its simplicity and immense customizability. I like that it is shell scriptable, but it is not a deal breaker feature for me.

I like how the binary split model makes any custom partition possible.

  • Chipstuttar@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 year ago

    I use Qtile. Mainly because it’s written in python.
    It’s easy to customize, and gets the job done :-) Came from I3 before…

    The only thing is that I haven’t really found a way yet to have both floating and tiling modes. I only really like tiling mode when I do work and need to stay focused

    • jamesh
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      1 year ago
       # Toggle floating windows
          Key([mod], "f", lazy.window.toggle_floating())
          ]
      
      # Drag floating layouts.
      mouse = [
          Drag([mod], "Button1", lazy.window.set_position_floating(),
               start=lazy.window.get_position()),
          Drag([mod], "Button3", lazy.window.set_size_floating(),
               start=lazy.window.get_size()),
          Click([mod], "Button2", lazy.window.focus())
      ]```
      
      Edit: had to fix codeblock