ccstatusline-editor 1.0.0__tar.gz
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.
- ccstatusline_editor-1.0.0/PKG-INFO +58 -0
- ccstatusline_editor-1.0.0/README.md +44 -0
- ccstatusline_editor-1.0.0/ccstatusline_editor/__init__.py +0 -0
- ccstatusline_editor-1.0.0/ccstatusline_editor/app.py +542 -0
- ccstatusline_editor-1.0.0/ccstatusline_editor/templates/index.html +834 -0
- ccstatusline_editor-1.0.0/ccstatusline_editor.egg-info/PKG-INFO +58 -0
- ccstatusline_editor-1.0.0/ccstatusline_editor.egg-info/SOURCES.txt +11 -0
- ccstatusline_editor-1.0.0/ccstatusline_editor.egg-info/dependency_links.txt +1 -0
- ccstatusline_editor-1.0.0/ccstatusline_editor.egg-info/entry_points.txt +2 -0
- ccstatusline_editor-1.0.0/ccstatusline_editor.egg-info/requires.txt +1 -0
- ccstatusline_editor-1.0.0/ccstatusline_editor.egg-info/top_level.txt +1 -0
- ccstatusline_editor-1.0.0/pyproject.toml +30 -0
- ccstatusline_editor-1.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ccstatusline-editor
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Visual drag-and-drop editor for ccstatusline config files
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/dpc00/ccstatusline-editor
|
|
7
|
+
Project-URL: Repository, https://github.com/dpc00/ccstatusline-editor
|
|
8
|
+
Keywords: ccstatusline,claude,statusline,terminal,config
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: flask
|
|
14
|
+
|
|
15
|
+
# ccstatusline-editor
|
|
16
|
+
|
|
17
|
+
A web-based visual editor for [ccstatusline](https://github.com/sirmalloc/ccstatusline) configuration files.
|
|
18
|
+
|
|
19
|
+
Instead of hand-editing the JSON config, open this in your browser and drag, drop, and click your status line into shape.
|
|
20
|
+
|
|
21
|
+

|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
- **Drag-and-drop** widgets within and between status lines
|
|
26
|
+
- **Widget palette** — all 83+ widget types grouped and searchable
|
|
27
|
+
- **30 Widget Presets** — curated selections for common workflows:
|
|
28
|
+
- Context Watch, Cost Monitor, Project Orientation, Git Full Picture, Token Economy, Focus Mode, Performance Audit, and more
|
|
29
|
+
- **56 Color Themes** — named palettes (Ocean, Dracula, Gruvbox, Monokai, Tokyo Night, …)
|
|
30
|
+
- **Auto-separators** — insert your chosen separator character between all widgets in one click
|
|
31
|
+
- **Max lines** limit — apply presets truncated to a maximum number of status lines
|
|
32
|
+
- **Ctrl+S** to save directly to `~/.config/ccstatusline/settings.json`
|
|
33
|
+
|
|
34
|
+
## Requirements
|
|
35
|
+
|
|
36
|
+
- Python 3.8+
|
|
37
|
+
- Flask
|
|
38
|
+
|
|
39
|
+
## Install & run
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pip install flask
|
|
43
|
+
python app.py
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Then open http://localhost:5199 in your browser.
|
|
47
|
+
|
|
48
|
+
## Usage
|
|
49
|
+
|
|
50
|
+
1. **Palette (left)** — drag a widget type onto any line, or double-click to add to the last line
|
|
51
|
+
2. **Lines (centre)** — click a chip to edit its color and metadata; drag to reorder; ✕ to remove
|
|
52
|
+
3. **Schemes (toolbar)** — choose a widget preset or color theme and apply in one click
|
|
53
|
+
4. **+ Seps (toolbar)** — select a separator character, click to insert between all widgets
|
|
54
|
+
5. **Save / Ctrl+S** — writes back to your ccstatusline settings file
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# ccstatusline-editor
|
|
2
|
+
|
|
3
|
+
A web-based visual editor for [ccstatusline](https://github.com/sirmalloc/ccstatusline) configuration files.
|
|
4
|
+
|
|
5
|
+
Instead of hand-editing the JSON config, open this in your browser and drag, drop, and click your status line into shape.
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- **Drag-and-drop** widgets within and between status lines
|
|
12
|
+
- **Widget palette** — all 83+ widget types grouped and searchable
|
|
13
|
+
- **30 Widget Presets** — curated selections for common workflows:
|
|
14
|
+
- Context Watch, Cost Monitor, Project Orientation, Git Full Picture, Token Economy, Focus Mode, Performance Audit, and more
|
|
15
|
+
- **56 Color Themes** — named palettes (Ocean, Dracula, Gruvbox, Monokai, Tokyo Night, …)
|
|
16
|
+
- **Auto-separators** — insert your chosen separator character between all widgets in one click
|
|
17
|
+
- **Max lines** limit — apply presets truncated to a maximum number of status lines
|
|
18
|
+
- **Ctrl+S** to save directly to `~/.config/ccstatusline/settings.json`
|
|
19
|
+
|
|
20
|
+
## Requirements
|
|
21
|
+
|
|
22
|
+
- Python 3.8+
|
|
23
|
+
- Flask
|
|
24
|
+
|
|
25
|
+
## Install & run
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install flask
|
|
29
|
+
python app.py
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Then open http://localhost:5199 in your browser.
|
|
33
|
+
|
|
34
|
+
## Usage
|
|
35
|
+
|
|
36
|
+
1. **Palette (left)** — drag a widget type onto any line, or double-click to add to the last line
|
|
37
|
+
2. **Lines (centre)** — click a chip to edit its color and metadata; drag to reorder; ✕ to remove
|
|
38
|
+
3. **Schemes (toolbar)** — choose a widget preset or color theme and apply in one click
|
|
39
|
+
4. **+ Seps (toolbar)** — select a separator character, click to insert between all widgets
|
|
40
|
+
5. **Save / Ctrl+S** — writes back to your ccstatusline settings file
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
MIT
|
|
File without changes
|