文件~/.tmux.conf
新的會話啓動兩會
new-session -n terminal
運行TMUX通過命令:
tmux
結果:在會議列表中發現了兩個會議(由ctrl+b s
檢查)
(0) + 1: 1 windows (attached)
(1) + terminal: 1 windows
我想只有terminal
會議,我已經定義我的配置文件。
文件~/.tmux.conf
新的會話啓動兩會
new-session -n terminal
運行TMUX通過命令:
tmux
結果:在會議列表中發現了兩個會議(由ctrl+b s
檢查)
(0) + 1: 1 windows (attached)
(1) + terminal: 1 windows
我想只有terminal
會議,我已經定義我的配置文件。
(0) + 1: 1 windows (attached)
- 由tmux
命令創建的第一個會話。
然後TMUX負荷CONFIGS,創造一個更會話(1) + terminal: 1 windows
,因爲你必須在.tmux.conf
new-session -n terminal
線路從.tmux.conf創建一個會話中刪除new-session -n terminal
並開始TMUX爲tmux
或tmux new -s session_name
所以我創建了一個腳本,它省略創造額外的會議(只有那些在配置中定義)
#!/bin/sh
tmux -2 attach-session -d
那是我的想法。但是我想保持配置,因爲我一次啓動了幾個預配置的會話。 謝謝你的回覆。 –
@MarcinRogacki歡迎您 – idej