A centralized TUI management application for running multiple TUI applications in embedded terminal windows. Built with OpenTUI and SolidJS.
- Embedded Terminals: Run multiple TUIs in a single window using Ghostty's high-performance terminal emulator.
- Tab Management: Organize and switch between different applications using a vertical sidebar.
- Simple Modal Keyboard: Two modes - TABS mode for navigation and TERMINAL mode for PTY input. Toggle with
Ctrl+A. - Command Palette: Quickly search and switch between apps with a fuzzy-search palette (
Space). - Runtime Management: Add, edit, and remove application entries directly within the app without restarting.
- Session Persistence: Optional config to remember and restore running applications and the active tab between restarts.
- Highly Configurable: Customize themes and application lists via YAML.
- Path Expansion: Supports
~,<CONFIG_DIR>, and<STATE_DIR>tokens in paths. - App Availability Detection: Add Tab modal shows which TUI apps are installed on your system.
For detailed guides, see the docs/ directory:
- Getting Started - Installation and first run
- Configuration - YAML config reference
- Apps - App configuration examples
- Troubleshooting - Common issues and solutions
See also: CONFIG.md for a comprehensive configuration reference.
- Runtime: Bun
- Framework: SolidJS
- TUI Engine: OpenTUI
- Terminal Emulator: ghostty-opentui
- PTY:
node-pty(viaspawn-pty)
- Bun runtime installed on your system.
- A terminal that supports TUI applications (xterm-256color recommended).
Run tuidoscope instantly without installing:
bunx tuidoscopeInstall globally:
bun install -g tuidoscopeThen run from anywhere:
tuidoscopeClone the repository and install dependencies:
git clone https://github.com/shuv1337/tuidoscope.git
cd tuidoscope
bun installStart the application in development mode:
bun devBuild for production:
bun run buildRun typechecks:
bun run typecheckTuidoscope looks for a configuration file at ~/.config/tuidoscope/tuidoscope.yaml. It also supports a local tuidoscope.yaml in the current working directory for project-specific setups.
Tuidoscope uses a simple two-mode system:
Ctrl+A- Toggle between TABS and TERMINAL mode- Double-tap
Ctrl+A- SendCtrl+Ato the terminal (useful for nested tmux/screen)
TABS Mode (single keystrokes):
| Key | Action |
|---|---|
j / k |
Navigate down/up in tab list |
gg |
Jump to first tab |
G |
Jump to last tab |
Enter |
Select/start app |
Space |
Open command palette |
t |
Add new tab |
e |
Edit selected app |
x |
Stop selected app |
r |
Restart selected app |
K |
Kill all running apps |
q |
Disconnect (leave apps running) |
Q |
Quit and stop all apps |
TERMINAL Mode: All keystrokes pass through to the embedded terminal.
Default theme is Night Owl. Customize in your tuidoscope.yaml:
theme:
primary: "#82aaff" # Blue - selections
background: "#011627" # Deep dark blue
foreground: "#d6deeb" # Light text
accent: "#7fdbca" # Cyan - active indicators
muted: "#637777" # Gray - inactive elements- Simplified Keyboard System: Replaced tmux-style leader key with simple focus-toggle model using
Ctrl+A. - Two-Mode Interface: TABS mode for navigation (single keystrokes) and TERMINAL mode for PTY input.
- Enhanced Add Tab Modal: Now shows app presets with availability detection directly in the modal.
- Streamlined Config: Removed keybinds configuration - keyboard shortcuts are now fixed for consistency.
- Leader Key System: tmux-style configurable leader key (default
Ctrl+A). - App Availability Detection: Preset list shows which apps are installed on your system.
- Expanded Presets: 30+ TUI apps including AI coding agents (Claude, OpenCode, Aider, Gemini, Codex).
- Night Owl Theme: Updated default theme to Night Owl color scheme.
- Initial release.
- Embedded terminal windows via
ghostty-opentui. - Vertical tab sidebar for application management.
- Command palette with fuzzy search.
- Optional session persistence (running apps & active tab).
- Runtime application configuration (Add/Edit).
- Path expansion for working directories.
Contributions are welcome! Please feel free to open an issue or submit a pull request on GitHub.
This project is built directly on top of:
- OpenTUI - Provides the declarative component model and rendering engine for the entire interface.
- ghostty-opentui - Enables high-performance, embedded terminal sessions within the application.
Huge thanks to both for making this possible.
MIT



