これはかなり古い記事ですが、この同じ問題を解決するために検索している間も頻繁に投稿されるので、自分の解決策を投稿すると思いました。
これには、小さなpythonスクリプトと、Ctrl + Alt + Tボタンを再マッピングして、単にターミナルを起動する代わりにスクリプトを実行することが含まれます。
テキストファイルを作成し、mine terminal.pyという名前を付けて、それが実行可能であることを確認します。その中に次のコードを配置します。これにより、利用可能なすべてのプロファイルを順番に使用してターミナルウィンドウが開き、「デフォルト」とマークされたプロファイルがリストの最初に表示されます。
#!/usr/bin/python
#
# Launch a gnome-terminal window trying to assign each new window
# to a different profile.
#
import json
import os
import commands
profiles=[]
try:
profileList = commands.getoutput("gsettings get org.gnome.Terminal.ProfilesList list").replace("'",'"')
profileDefault = commands.getoutput("gsettings get org.gnome.Terminal.ProfilesList default").replace("'",'"')
profiles.append(json.loads(profileDefault))
ls = json.loads(profileList)
ls.remove(profiles[0])
profiles+=ls
# find the next available terminal number
# when terminals are closed, gaps in the numbers can happen
# terminals are numeric and the lowest slot is filled first
terminals = commands.getoutput("ls /dev/pts/ | grep -E '^[0-9]+$'").split("\n")
next = 0
try:
while terminals.index(str(next))>=0:
next += 1
except:
pass
# determine the profile to use
prof = next % len(profiles)
# launch the terminal with the specific profile
cmd="gnome-terminal --window-with-profile='%s'" % (profiles[prof])
os.system(cmd)
except:
# if anything fails, launch a default terminal
print("error")
os.system("gnome-terminal")
キーボード設定ユーティリティを使用して、このスクリプトに新しいショートカットを割り当てます。私にとっては、Ctrl + Alt + Tを再割り当てしました。これは、ターミナルウィンドウを開くために使用するショートカットだからです。
端末で複数のプロファイルを作成してください。このスクリプトは、すべてのプロファイルを使用します。したがって、作成するほど、ウィンドウのバリエーションも増えます。背景色を除いてすべて同じものがいくつかあります。これにより、Alt-Tabキーを押しながらそれらを認識できます。