• 0 Posts
  • 4 Comments
Joined 1 year ago
cake
Cake day: June 4th, 2023

help-circle


  • jameshtoLinuxWhich Tiling Window Managers do you like, and why?
    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