[FEAT]: Detailed configurations on layouts #435

Closed
opened 2026-01-05 14:50:44 +01:00 by adam · 1 comment
Owner

Originally created by @FlyinCow on GitHub (Jul 18, 2024).

Is your feature request related to a problem? Please describe.
I use VerticalStack layout for my main workspace, with IDE/Obsidian in the primary container and browser/terminal/chat apps stacking aside. But I have to resize the width of primary container every time because when you open a second app it always takes 50% the width of the screen.

Describe the solution you'd like
Rules in komorebi.json for built-in layouts. For workspace-wise:

{
...
  "layout": "VerticalStack",
  "primary_container_width": "1600" // or percentage, e.g. primary_container_width: "65%"
...
}

Or for layout-wise:

{
  "layout_configuration":{
    "VerticalStack": {
      "primary_container_percentage": 65,
      // other configurations
    },
    "BSP": {
      “split_priority”: "vertical" // force to split the container vertically first, "auto" for split at the longer edge
    }
  }
}
Originally created by @FlyinCow on GitHub (Jul 18, 2024). **Is your feature request related to a problem? Please describe.** I use VerticalStack layout for my main workspace, with IDE/Obsidian in the primary container and browser/terminal/chat apps stacking aside. But I have to resize the width of primary container every time because when you open a second app it always takes 50% the width of the screen. **Describe the solution you'd like** Rules in `komorebi.json` for built-in layouts. For workspace-wise: ```json { ... "layout": "VerticalStack", "primary_container_width": "1600" // or percentage, e.g. primary_container_width: "65%" ... } ``` Or for layout-wise: ``` { "layout_configuration":{ "VerticalStack": { "primary_container_percentage": 65, // other configurations }, "BSP": { “split_priority”: "vertical" // force to split the container vertically first, "auto" for split at the longer edge } } } ```
adam added the enhancementi-will-not-work-on-this labels 2026-01-05 14:50:44 +01:00
adam closed this issue 2026-01-05 14:50:44 +01:00
Author
Owner

@LGUG2Z commented on GitHub (Jan 23, 2025):

I'm not really in favor of this, though I would consider a PR. Closing for now as this is unplanned from my side.

@LGUG2Z commented on GitHub (Jan 23, 2025): I'm not really in favor of this, though I would consider a PR. Closing for now as this is unplanned from my side.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#435