ターミナル用のプロファイルがいくつかあります。起動時にすべてのプロファイルを開くことができますしかしスタートアップアプリケーションでこの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
動作させる方法は?
いくつかのタブで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 のエントリとして追加してください。
それぞれのタブが少ないgnome-terminal
ウィンドウを開く方法はほとんどありません。次のようなコマンドを使用することをお勧めします。
gnome-terminal --tab-with-profile=ProfileA --tab-with-profile=ProfileB && gnome-terminal --tab-with-profile=ProfileC --tab-with-profile=ProfileD
別のアイデアは、gnome-terminal
ウィンドウごとに個別のスタートアップアプリケーションエントリを作成することです。