A CLI tool to help manage your tmux sessions
Project description
Hivemux
Hivemux is a cli tool allowing easy management of your tmux environments.
What Hivemux provides the following features:
- create pre-defined sessions based on projects found in your workspace
- join pre-started session if one already exists in your environment
Installation
pipx install hivemux
Configuration
Hivemux can be configured through a TOML file in $HOME/.config/hivemux/config.toml.
If you have XDG_CONFIG_HOME or XDG_CONFIG_DIRS set, Hivemux will look in these locations as described in the XDG specification.
Hivemux works well without a config file set, by default, it acts with the default values described below.
config.toml
# Path to your workspace containing all your projects
workspace_path = "~/workspace"
# Pattern to match to find all the projects in the first level of your workspace folder. Must match Python's Path.glob() definition https://docs.python.org/3/library/pathlib.html#pathlib.Path.glob
workspace_markers = ["*/.git"]
# Additional search paths to add to your list of projects. The list is taken as-is and added to the project list.
additional_search_paths = []
# .hmrc file used to define how to create the session for all projects
hmrc = """
new-session -d -c {{cwd}} -s {{session}} -n source nvim .
new-window -c {{cwd}} -t {{session}} -n shell
select-window -t {{session}}:source
"""
A note on hmrc
Hivemux creates TMUX sessions based on a template. By default, this template lives in the Hivemux code unless overriden by the config.toml file. This gives the ability to define a personal and custom session creator.
To override the default hmrc, the config.toml file provides a field called hmrc that will be used instead of the default hmrc script provided by Hivemux.
A hmrc file can also be created per project. For example, if your project is under $HOME/workspace/my_project, you can override the global hmrc file with a file $HOME/workspace/my_project/.hmrc
The content of the hmrc file is parsed through Jinja and therefore allows for some templating.
The following variables are passed to the template:
- session: name of the session
- cwd: absolute path of the project
After the rendering of the template is done, the content is passed directly to tmux without modifications.
The commands defined in the TMUX documentation can all be used.
What must the hmrc file contain
A hmrc script must contain the following line at the beginning.
new-session -d -c {{cwd}} -s {{session}}
This allows tmux to create the session without attaching to it, allowing Hivemux to finish its execution.
If you want, you can always add other flags to the new-session command such as -n or even a shell command.
Usage
hm --help
hm list-projects
hm attach myproject or hm a myproject
Shell auto-completion
ZSH
In your .zshrc, add the following line.
eval "$(_HM_COMPLETE=zsh_source hm)"
bash
In your .bashrc, add the following line.
eval "$(_HM_COMPLETE=bash_source hm)"
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hivemux-0.0.3.tar.gz.
File metadata
- Download URL: hivemux-0.0.3.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c8c1967d746b14f16a276d27325cd00ca0049ba9844013fc50e98b167cfdc07
|
|
| MD5 |
90168c47ada142f435bd1915b03fb04e
|
|
| BLAKE2b-256 |
1cb9cf836abf4fd04a136cfc8543a9894b63566d5f6d7333e28179cdf3fa2fa6
|
File details
Details for the file hivemux-0.0.3-py3-none-any.whl.
File metadata
- Download URL: hivemux-0.0.3-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cbb5154ddb4adfb176cbf6f9773e449c7be8f27ad5729d59136cc6f5ed71481
|
|
| MD5 |
afb497c06b60384e6a5064e6f6e810c1
|
|
| BLAKE2b-256 |
7469b25cd72244297f1de0a49e013ce4bba62c2595b5d1657485c585d0a7530b
|