Tree @v1.6.0 (Download .tar.gz)
MOULTI
Moulti changes the way your shell scripts (bash, zsh, etc.) display their output in your terminal. Moulti enables you to assign the numerous lines emitted by your scripts to "steps", i.e. visual, collapsible blocks featuring their own title and color.
Here is how upgrading a Debian system looks like with Moulti:
Interested? Run this demo in a container using docker or podman
Moulti is a tool meant for people who write and execute shell scripts. Specifically, if you find yourself scrolling up your terminal to ensure everything went fine while your script is still running, then Moulti is made for you.
How?
Synopsis:
- Start a Moulti instance:
moulti init
- Add a step:
moulti step add step_name --title='some clever title here'
- Fill it:
whatever_your_script_does | moulti pass step_name
- Repeat #2 and #3 until your script is done.
Learn how to leverage Moulti by jumping to its Documentation.
Features
As shown in the demo, Moulti enables user interactions through questions:
Moulti also features: - a progress bar: documentation - programmatic scrolling: documentation
When it comes to look and feel, Moulti can be customised:
- through
moulti set
: define whether Moulti steps flow up or down: documentation - through Textual CSS (TCSS): documentation
- through ANSI themes: documentation
Implementation
Moulti is written in Python and leverages Textual, along with Pyperclip and argcomplete.
Inspiration
Moulti remained a mere idea for a significant time (possibly years).
The idea of driving TUI elements from scripts obviously comes from tools like dialog and whiptail.
At some point, the author stumbled upon multiplex, which is probably the closest thing to Moulti. multiplex was deemed unsatisfying on multiple points (including architecture) and that prompted the development of Moulti.
procmux is also similar to Moulti but did not affect its development.
Acknowledgments
The Textual framework helped a lot, so kudos to the Textual team, and specifically to: - Will McGugan for creating it - Dave Pearson for his regular help and feedback about Textual issues
Commit History @v1.6.0
- Tag v1.6.0. Xavier G. 5 months ago
- programmatic scrolling: update documentation. Xavier G. 5 months ago
- programmatic scrolling: add scroll-on-activity. Xavier G. 5 months ago
- programmatic scrolling: add "Scroll lock" action. Xavier G. 5 months ago
- programmatic scrolling: add moulti scroll. Xavier G. 5 months ago
- programmatic scrolling: add StepContainer.scroll_to_step(). Xavier G. 5 months ago
- Add moulti --step-direction. Xavier G. 5 months ago
- The "Save" feature now exports the progress bar. Xavier G. 5 months ago
- Add moulti set --step-position. Xavier G. 6 months ago
- Bash functions: run only moulti_delayed_collapse in the background. Xavier G. 6 months ago