Tmux: custom project workspace
Tmux is a wonderful tool to increase my productivity by multiplexing windows and apps to a single terminal. I use it all the time when working on a project to organize my tools, and quickly switch between them.
One things I do these days is create a shell script to launch, and customize, my tmux session for the specific project that I am working on. This give me quick access to a complex setup, allowing me to jump into a project and get moving quickly.
When working on projects with a deep directory structure it is really helpful. I especially enjoy using this for Golang projects. I can jump into my Go root, run my script, and have a tmux session with all the windows I need loaded to the correct location.
The custom script defines a new session, creates windows with specific locations, names them, and sets the environment. It could do more, even starting processes, or running utility scripts.
Step by step
To begin with, a little check to ensure that my project exist. From time to time I move these scripts between machines, and I don’t need to bang my head against the monitor trying to discover why tmux isn’t cd’ing to my project directory.
|
|
The next piece is to start a new tmux session, give it a session name, a working
directory, and give the initial window a custom name. Here we use -d
to start
the session detached. Only after we’ve finished mucking about with getting
everything in it’s right place will we attach the session.
|
|
Next we can create some new windows. This example uses a straightforward Go project, so it doesn’t have much need for windows with custom paths. Though, I have set the fourth window use a custom path, and name.
|
|
This is often useful to me when working on a web project. I will have one of my windows cd to the templates directory. It makes it easy to know that all my templates will be on window 3, and all my code will be on window 2.
Next I want to set my environment. I did not have a good experience using tmux’s
set-environment
command. I’m not sure if it doesn’t do what I want, or if I
was doing it wrong. Either way I moved on to a brute force way of looping over
all of my session’s panes and sending a bash command to set the environment.
|
|
For this project I am setting the GOPATH and using a custom go modules configuration; I’m turning it off. This could just as easily be used to set Docker or Kubernetes environmental variables.
Finally I jump back to the first window, attach the session, and I’m ready to go.
|
|
Bring it all together
Here is our final script. It can be run from anywhere on the filesystem, but I tend to keep them in the GOPATH root, or someplace with my other projects.
|
|
You can find this on github in my tmux playground repository with other tmux scripts and snippets.