a TUI utility for running multiple commands in parallel in easily switchable terminals
Project description
procmux
a TUI utility for running multiple commands in parallel in easily switchable terminals
this app is heavily influenced by this TUI app: https://github.com/pvolok/mprocs
The goals/use-cases:
procmux allows the user to run multiple commands in parallel and makes it easy to view the output from each terminal session. Procmux configuration files can be included in projects that have a series of commonly used scripts / long-running processes. is intended to make it easy for newcomers to a project to browse and run necessary commands, while also reducing the need to manually spin up multiple terminal sessions for potentially long-running processes. Alternatively, personal or system-wide procmux config files can be defined for browsing/running snippets or commonly used shell scripts.
Installation
# if you use pipx
pipx install procmux
# if you use pip
pip install procmux
# if you use brew
brew tap napisani/procmux
brew install procmux
Usage
# standard usage
procmux --config /path/to/config.yaml
# with overriding config values
procmux --config /path/to/config.yaml --config-override /path/to/override-file.yaml
Configuration
Here is a procmux configuration example with ALL available configuration points.
Only the procs
section is required, the rest of the properties have defaults predefined:
procmux.yaml
layout:
# hide or show the help window that show all keybindings and actions at the bottom of the screen
hide_help: false
# hide or show the window second from the bottom that shows the full command name and the description
hide_process_description_panel: false
# the prompt_toolkit width of the sidebar (containing all the process names)
processes_list_width: 31
# whether to sort the process list alphabetically
sort_process_list_alpha: True
style:
#foreground color of the process in the process list when it is selected
selected_process_color: 'ansiblack'
#background color of the process in the process list when it is selected
selected_process_bg_color: 'ansimagenta'
#foregroud color of the process in the process list when it is not selected
unselected_process_color: 'ansiblue'
#foregroud color of the process list status when the status is RUNNING
status_running_color: 'ansigreen'
#foregroud color of the process list status when the status is STOPPED
status_stopped_color: 'ansired'
#the color of the right panel (terminal panel) when no terminal is created/selected yet
placeholder_terminal_bg_color: '#1a1b26'
#character used to indicate the current selection
pointer_char: '▶'
#override default style classes
#https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/src/prompt_toolkit/styles/defaults.py
style_classes:
cursor-line: 'underline'
keybinding:
# a map of app actions to their respective key bindings.
# each key combo in an action list is an alias for the same action.
# IE up is fired when 'j' or the 'up arrow' is pressed
# All modifiers for a keybinding should be included in the same list element IE: switch focus - 'c-w' (Control-W)
quit:
- q
filter:
- /
submit_filter:
- enter
start:
- s
stop:
- x
up:
- up
- k
down:
- down
- j
docs:
- ?
switch_focus:
- 'c-w'
zoom:
- 'c-z'
toggle_scroll:
- 'c-s'
shell_cmd:
# this is the command used for all 'procs' that are defined with a 'shell' property.
# by default the configured "$SHELL" environment variable will be used.
- '/bin/bash'
- '-c'
# if this property is defined, the app will log all debug, info, error level logs to the designated file
log_file: /tmp/term.log
procs:
# each key will show up as its own process/script in the process list
"tail log":
# the shell command to run when this process is started
shell: "tail -f /tmp/term.log"
# whether to start this process when ProcMux starts
autostart: true
# a short description of what this process/command does - will be displayed at the bottom of the screen when selected
description: 'tail the app log'
"print envs":
shell: "echo $SOME_TEST"
description: 'this command will print env vars that are configured in the child pid'
#used for showing man page/documentation dialog when the docs keybinding is pressed
docs: |
<b>echo an env var set in the child pid</b>
<style fg="ansigreen">first an env var is set in the child pid</style>
<style fg="ansiblue">then the var is printed</style>
# environment variables before the command/shell is invoked
env:
SOME_TEST: "AAAAAA"
"vim":
shell: "vim"
autostart: false
description: 'start vim'
"long running print":
shell: "echo 'some text here' && sleep 3 && echo 'still running' && sleep 3 && echo 'final text'"
autostart: false
description: 'print a using sleeps in between'
"print colors":
shell: "./print_colors.sh"
# used to change the directory that the command/process is started from
cwd: "/Users/nick/code/procmux-tui"
autostart: false
description: 'test terminal colors'
"just echo":
# an example of using a specific CMD list instead of a shell string
cmd:
- '/bin/bash'
- '-c'
- 'echo "DONE!"'
autostart: false
description: 'run using cmd property'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file procmux-1.0.4.tar.gz
.
File metadata
- Download URL: procmux-1.0.4.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea18a5767ad95c89149b6f8c4e3e7b928e690a8374dcca5888349a34aa120ad5 |
|
MD5 | 4386197214146647a5a0378e31a31cd5 |
|
BLAKE2b-256 | 17cf41d751d6b15f1147ddf523f5b933a55e7f58e99691c3c09366b71a6aa1e6 |
File details
Details for the file procmux-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: procmux-1.0.4-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b4e1b49990e5acfffd61859cca28f59502e8109353d3528ef37110653c9f620 |
|
MD5 | 4bdc6bd9592170e0bb2b9af3a22effeb |
|
BLAKE2b-256 | 6755fb7aa655c38c0d57ef560d236f32cbd5d99520321502fb8ac845dfd8c972 |