Como abrir uma (ou mais) janela gnome-terminal com poucas abas, cada uma com perfil diferente, quando iniciar / reinicializar o computador?

2

Eu tenho vários perfis para o terminal. Eu posso abrir todos os perfis na inicialização mas eles abrem em janelas diferentes com este cmd em aplicativos de inicialização:

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    

Eu tentei abrir uma janela com várias guias com este cmd sem sucesso:

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   

Como fazer isso funcionar?

    
por mamesaye 05.09.2017 / 17:00

1 resposta

4

Para abrir uma janela gnome-terminal com algumas guias, devemos usar a opção --tab . Veja gnome-terminal --help-all . Também em man gnome-terminal podemos encontrar esta explicação:

--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.

Então, para abrir a janela gnome-terminal com poucas abas, devemos usar o comando como este:

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

Componha seu próprio comando e teste-o em um terminal. Se funcionar satisfatoriamente, adicione-o como uma entrada em Startup Applications :

Existem poucas abordagens possíveis de como abrir algumas gnome-terminal janelas com poucas guias em cada. Eu sugiro usar um comando da seguinte forma:

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

Outra ideia é criar uma entrada separada de Aplicativos de inicialização para cada janela gnome-terminal .

    
por pa4080 05.09.2017 / 17:35