如何在启动/重新启动计算机时打开一个(或多个)带有几个选项卡的 gnome-terminal 窗口,每个选项卡都有不同的配置文件?

如何在启动/重新启动计算机时打开一个(或多个)带有几个选项卡的 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 打开一个带有多个选项卡的窗口,但没有成功:

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   

如何让它工作?

答案1

要打开一个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

编写自己的命令并在终端中测试它。如果它运行良好,请将其作为条目添加到启动应用程序

在此处输入图片描述

有几种可能的方法可以打开几个gnome-terminal窗口,每个窗口包含几个选项卡。我建议使用以下命令:

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

gnome-terminal另一个想法是为每个窗口创建单独的启动应用程序条目。

相关内容