tuidoscope 0.1.13 → 0.1.16
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.
- package/README.md +62 -24
- package/dist/index.js +4919 -5551
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -20,11 +20,24 @@ A centralized TUI management application for running multiple TUI applications i
|
|
|
20
20
|
|
|
21
21
|
- **Embedded Terminals**: Run multiple TUIs in a single window using Ghostty's high-performance terminal emulator.
|
|
22
22
|
- **Tab Management**: Organize and switch between different applications using a vertical sidebar.
|
|
23
|
-
- **
|
|
23
|
+
- **Simple Modal Keyboard**: Two modes - TABS mode for navigation and TERMINAL mode for PTY input. Toggle with `Ctrl+A`.
|
|
24
|
+
- **Command Palette**: Quickly search and switch between apps with a fuzzy-search palette (`Space`).
|
|
24
25
|
- **Runtime Management**: Add, edit, and remove application entries directly within the app without restarting.
|
|
25
26
|
- **Session Persistence**: Automatically remembers and restores your running applications and active tab between restarts.
|
|
26
|
-
- **Highly Configurable**: Customize themes
|
|
27
|
-
- **Path Expansion**: Supports
|
|
27
|
+
- **Highly Configurable**: Customize themes and application lists via YAML.
|
|
28
|
+
- **Path Expansion**: Supports `~`, `<CONFIG_DIR>`, and `<STATE_DIR>` tokens in paths.
|
|
29
|
+
- **App Availability Detection**: Add Tab modal shows which TUI apps are installed on your system.
|
|
30
|
+
|
|
31
|
+
## Documentation
|
|
32
|
+
|
|
33
|
+
For detailed guides, see the [`docs/`](./docs/) directory:
|
|
34
|
+
|
|
35
|
+
- [Getting Started](./docs/getting-started.md) - Installation and first run
|
|
36
|
+
- [Configuration](./docs/configuration.md) - YAML config reference
|
|
37
|
+
- [Apps](./docs/apps.md) - App configuration examples
|
|
38
|
+
- [Troubleshooting](./docs/troubleshooting.md) - Common issues and solutions
|
|
39
|
+
|
|
40
|
+
See also: [CONFIG.md](./CONFIG.md) for a comprehensive configuration reference.
|
|
28
41
|
|
|
29
42
|
## Tech Stack
|
|
30
43
|
|
|
@@ -93,39 +106,60 @@ bun run typecheck
|
|
|
93
106
|
|
|
94
107
|
## Configuration
|
|
95
108
|
|
|
96
|
-
Tuidoscope looks for a configuration file at `~/.config/tuidoscope/
|
|
109
|
+
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.
|
|
110
|
+
|
|
111
|
+
### Keyboard Shortcuts
|
|
112
|
+
|
|
113
|
+
Tuidoscope uses a simple two-mode system:
|
|
97
114
|
|
|
98
|
-
|
|
115
|
+
- **`Ctrl+A`** - Toggle between TABS and TERMINAL mode
|
|
116
|
+
- **Double-tap `Ctrl+A`** - Send `Ctrl+A` to the terminal (useful for nested tmux/screen)
|
|
99
117
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
|
103
|
-
|
|
104
|
-
|
|
|
105
|
-
|
|
|
106
|
-
|
|
|
107
|
-
|
|
|
108
|
-
|
|
|
109
|
-
|
|
|
110
|
-
|
|
|
111
|
-
|
|
|
112
|
-
|
|
|
118
|
+
**TABS Mode** (single keystrokes):
|
|
119
|
+
|
|
120
|
+
| Key | Action |
|
|
121
|
+
|-----|--------|
|
|
122
|
+
| `j` / `k` | Navigate down/up in tab list |
|
|
123
|
+
| `gg` | Jump to first tab |
|
|
124
|
+
| `G` | Jump to last tab |
|
|
125
|
+
| `Enter` | Select/start app |
|
|
126
|
+
| `Space` | Open command palette |
|
|
127
|
+
| `t` | Add new tab |
|
|
128
|
+
| `e` | Edit selected app |
|
|
129
|
+
| `x` | Stop selected app |
|
|
130
|
+
| `r` | Restart selected app |
|
|
131
|
+
| `K` | Kill all running apps |
|
|
132
|
+
| `q` | Quit tuidoscope |
|
|
133
|
+
|
|
134
|
+
**TERMINAL Mode**: All keystrokes pass through to the embedded terminal.
|
|
113
135
|
|
|
114
136
|
### Theme Customization
|
|
115
137
|
|
|
116
|
-
|
|
138
|
+
Default theme is Night Owl. Customize in your `tuidoscope.yaml`:
|
|
117
139
|
|
|
118
140
|
```yaml
|
|
119
141
|
theme:
|
|
120
|
-
primary: "#
|
|
121
|
-
background: "#
|
|
122
|
-
foreground: "#
|
|
123
|
-
accent: "#
|
|
124
|
-
muted: "#
|
|
142
|
+
primary: "#82aaff" # Blue - selections
|
|
143
|
+
background: "#011627" # Deep dark blue
|
|
144
|
+
foreground: "#d6deeb" # Light text
|
|
145
|
+
accent: "#7fdbca" # Cyan - active indicators
|
|
146
|
+
muted: "#637777" # Gray - inactive elements
|
|
125
147
|
```
|
|
126
148
|
|
|
127
149
|
## Change Log
|
|
128
150
|
|
|
151
|
+
### v0.3.0
|
|
152
|
+
- **Simplified Keyboard System**: Replaced tmux-style leader key with simple focus-toggle model using `Ctrl+A`.
|
|
153
|
+
- **Two-Mode Interface**: TABS mode for navigation (single keystrokes) and TERMINAL mode for PTY input.
|
|
154
|
+
- **Enhanced Add Tab Modal**: Now shows app presets with availability detection directly in the modal.
|
|
155
|
+
- **Streamlined Config**: Removed keybinds configuration - keyboard shortcuts are now fixed for consistency.
|
|
156
|
+
|
|
157
|
+
### v0.2.0
|
|
158
|
+
- **Leader Key System**: tmux-style configurable leader key (default `Ctrl+A`).
|
|
159
|
+
- **App Availability Detection**: Preset list shows which apps are installed on your system.
|
|
160
|
+
- **Expanded Presets**: 30+ TUI apps including AI coding agents (Claude, OpenCode, Aider, Gemini, Codex).
|
|
161
|
+
- **Night Owl Theme**: Updated default theme to Night Owl color scheme.
|
|
162
|
+
|
|
129
163
|
### v0.1.0
|
|
130
164
|
- Initial release.
|
|
131
165
|
- Embedded terminal windows via `ghostty-opentui`.
|
|
@@ -135,6 +169,10 @@ theme:
|
|
|
135
169
|
- Runtime application configuration (Add/Edit).
|
|
136
170
|
- Path expansion for working directories.
|
|
137
171
|
|
|
172
|
+
## Contributing
|
|
173
|
+
|
|
174
|
+
Contributions are welcome! Please feel free to open an issue or submit a pull request on [GitHub](https://github.com/shuv1337/tuidoscope).
|
|
175
|
+
|
|
138
176
|
## Acknowledgments
|
|
139
177
|
|
|
140
178
|
This project is built directly on top of:
|