Thursday, 26 May 2022

[tmux] recreate the same session

I often find my self starting a tmux session and recreating the same windows and so on in it again and again. I recon, for me it is easiest to use tmuxp, which is a tmux session manager written in Python. There are others like Tmuxinator and Teamocil, but since they are written in Ruby, but I am fairly familiar with Python only and thus usually have already Python installed on my system, I opt for tmuxp. You can write a shell script too if you like a the third links demonstrates.

Some links

No comments:

Post a Comment

[git] Create a local branch from another branch

From the active branch git checkout -b <LOCAL_BRANCH> From a donator branch git checkout -b <LOCAL_BRANCH> <DONATING_BRANCH...