tuidoscope
v0.1.16
Published
A centralized TUI management app for running TUI applications in embedded terminal windows
Maintainers
Readme
tuidoscope
A centralized TUI management application for running multiple TUI applications in embedded terminal windows. Built with OpenTUI and SolidJS.
Screenshots
Main Interface

Running TUI Applications

Command Palette

Edit App Modal

Features
- 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: Automatically remembers and restores your running applications and 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.
Documentation
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.
Tech Stack
- Runtime: Bun
- Framework: SolidJS
- TUI Engine: OpenTUI
- Terminal Emulator: ghostty-opentui
- PTY:
node-pty(viaspawn-pty)
Getting Started
Prerequisites
- Bun runtime installed on your system.
- A terminal that supports TUI applications (xterm-256color recommended).
Quick Start (No Install)
Run tuidoscope instantly without installing:
bunx tuidoscopeInstallation
Install globally:
bun install -g tuidoscopeThen run from anywhere:
tuidoscopeDevelopment
Clone 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 typecheckConfiguration
Tuidoscope 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.
Keyboard Shortcuts
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 | Quit tuidoscope |
TERMINAL Mode: All keystrokes pass through to the embedded terminal.
Theme Customization
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 elementsChange Log
v0.3.0
- 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.
v0.2.0
- 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.
v0.1.0
- Initial release.
- Embedded terminal windows via
ghostty-opentui. - Vertical tab sidebar for application management.
- Command palette with fuzzy search.
- Session persistence (running apps & active tab).
- Runtime application configuration (Add/Edit).
- Path expansion for working directories.
Contributing
Contributions are welcome! Please feel free to open an issue or submit a pull request on GitHub.
Acknowledgments
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.
License
MIT
