web-dev-qa-db-ja.com

コンピューターを起動/再起動するときに、それぞれ異なるプロファイルを持ついくつかのタブを持つ1つ(または複数)のgnome-terminalウィンドウを開く方法は?

ターミナル用のプロファイルがいくつかあります。起動時にすべてのプロファイルを開くことができますしかしスタートアップアプリケーションでこのcmdを使用して、異なるウィンドウで開きます。

gnome-terminal --window-with-profile=ablack && gnome-terminal --window-with-profile=agreeen && gnome-terminal --window-with-profile=aubergine && gnome-terminal --window-with-profile=beige && gnome-terminal --window-with-profile=cyan && gnome-terminal --window-with-profile=grey && gnome-terminal --window-with-profile=orange && gnome-terminal --window-with-profile=white && gnome-terminal --window-with-profile=yellow && gnome-terminal --window-with-profile=ablack    

私は成功せずにこのcmdで複数のタブを持つ1つのウィンドウを開こうとしました:

gnome-terminal --window-with-profile=ablack && gnome-terminal --tab-with-profile=agreeen && gnome-terminal --tab-with-profile=aubergine && gnome-terminal --tab-with-profile=beige && gnome-terminal --tab-with-profile=cyan && gnome-terminal --tab-with-profile=grey && gnome-terminal --tab-with-profile=orange && gnome-terminal --tab-with-profile=white && gnome-terminal --tab-with-profile=yellow && gnome-terminal --tab-with-profile=ablack   

動作させる方法は?

2
mamesaye

いくつかのタブでgnome-terminalウィンドウを開くには、--tabオプションを使用する必要があります。 gnome-terminal --help-allを参照してください。また、man gnome-terminalにも次の説明があります。

--window-with-profile=PROFILENAME
     Open a new window containing a tab with the given profile. 
     More than one of these options can be provided.
--tab-with-profile=PROFILENAME
     Open a tab in the window with the given profile. 
     More than one of these options can be provided, to open several tabs.

したがって、いくつかのタブでgnome-terminalウィンドウを開くには、次のようにコマンドを使用する必要があります。

gnome-terminal --tab-with-profile=ProfileA --tab-with-profile=ProfileB --tab-with-profile=ProfileC

独自のコマンドを作成して、ターミナルでテストします。うまく機能する場合は、 Startup Applications のエントリとして追加してください。

enter image description here

それぞれのタブが少ないgnome-terminalウィンドウを開く方法はほとんどありません。次のようなコマンドを使用することをお勧めします。

gnome-terminal --tab-with-profile=ProfileA --tab-with-profile=ProfileB && gnome-terminal --tab-with-profile=ProfileC --tab-with-profile=ProfileD

別のアイデアは、gnome-terminalウィンドウごとに個別のスタートアップアプリケーションエントリを作成することです。

4
pa4080