openmux 0.2.32 → 0.2.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -146,6 +146,15 @@ bun dev # Run with watch mode
146
146
 
147
147
  ## Concepts
148
148
 
149
+ ### Why openmux (vs tmux / zellij)
150
+
151
+ - **Single-client steal/lock**: predictable attach semantics; new client wins and old client detaches.
152
+ - **UI binary swap**: update the UI without touching running PTYs (shim stays alive).
153
+ - **UI-first architecture**: SolidJS/OpenTUI enables richer overlays and layout evolution.
154
+ - **PTY state snapshots**: fast attach with immediate state restore (no full redraw pipeline).
155
+ - **Emulator ownership**: aggregate previews, scrollback caching, and search are first-class.
156
+ - **Lower client CPU**: shim does emulation; client focuses on rendering updates.
157
+
149
158
  ### Workspaces
150
159
 
151
160
  Like i3/sway, openmux supports multiple workspaces (1-9). Each workspace has its own layout tree of panes. The status bar shows populated workspaces dynamically - empty workspaces don't appear unless active.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmux",
3
- "version": "0.2.32",
3
+ "version": "0.2.35",
4
4
  "description": "Terminal multiplexer with master-stack tiling layout",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",