2016-11-07 95 views
1

文件~/.tmux.conf新的會話啓動兩會

new-session -n terminal 

運行TMUX通過命令:

tmux 

結果:在會議列表中發現了兩個會議(由ctrl+b s檢查)

(0) + 1: 1 windows (attached) 
(1) + terminal: 1 windows 

我想只有terminal會議,我已經定義我的配置文件。

回答

1

(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爲tmuxtmux new -s session_name

+0

那是我的想法。但是我想保持配置,因爲我一次啓動了幾個預配置的會話。 謝謝你的回覆。 –

+0

@MarcinRogacki歡迎您 – idej

0

所以我創建了一個腳本,它省略創造額外的會議(只有那些在配置中定義)

#!/bin/sh 
tmux -2 attach-session -d 
相關問題