如何设置tmux以便在打开指定窗口的情况下启动它?
您可以编写一个小shell脚本,使用所需的程序启动tmux.我在shell脚本中有以下内容,我称之为dev-tmux.开发环境:
原文链接:https://www.f2er.com/bash/387052.html#!/bin/sh tmux new-session -d 'vim' tmux split-window -v 'ipython' tmux split-window -h tmux new-window 'mutt' tmux -2 attach-session -d
因此,每当我想要启动我最喜欢的开发环境时,我就可以做到
$dev-tmux